Defines | |
#define | PSTR(s) ({static char __c[] PROGMEM = (s); __c;}) |
#define | PGM_P const prog_char * |
#define | PGM_VOID_P const prog_void * |
#include <avr/io.h>
#include <avr/pgmspace.h>
The functions in this module provide interfaces for a program to access data stored in program space (flash memory) of the device. In order to use these functions, the target device must support either the LPM
or ELPM
instructions.
|
Used to declare a variable that is a pointer to a string in program space. |
|
Used to declare a generic pointer to an object in program space. |
|
Used to declare a static pointer to a string in program space. |