mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
6b95d870ad
no need to list all other boards
16 lines
273 B
C
16 lines
273 B
C
|
|
#ifndef __AP_PROGMEM_H__
|
|
#define __AP_PROGMEM_H__
|
|
|
|
#include <AP_HAL_Boards.h>
|
|
#if defined(__AVR__)
|
|
#include "AP_Progmem_AVR.h"
|
|
#else
|
|
#include "AP_Progmem_Identity.h"
|
|
#endif
|
|
|
|
#define PROGMEM_STRING(_v, _s) static const char _v[] PROGMEM = _s
|
|
|
|
#endif // __AP_PROGMEM_H__
|
|
|