You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
273 B
15 lines
273 B
12 years ago
|
|
||
|
#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__
|
||
|
|