mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 23:18:28 -04:00
5c738810e2
* derived from AP_Common
15 lines
273 B
C
15 lines
273 B
C
|
|
#ifndef __AP_PROGMEM_H__
|
|
#define __AP_PROGMEM_H__
|
|
|
|
#if defined(__AVR__)
|
|
#include "AP_Progmem_AVR.h"
|
|
#elif defined(DESKTOP_BUILD)
|
|
#include "AP_Progmem_DesktopBuild.h"
|
|
#endif
|
|
|
|
#define PROGMEM_STRING(_v, _s) static const char _v[] PROGMEM = _s
|
|
|
|
#endif // __AP_PROGMEM_H__
|
|
|