#include <avr/pgmspace.h> #include <stdio.h>
typedef struct { uint8_t Count; PROGMEM const PROGMEM char * PROGMEM String PROGMEM ; } Item_t ;
#define Item0_init { 0, (PROGMEM const PROGMEM char PROGMEM * PROGMEM ) "aaaaa" , }
#define Item1_init { 1, (PROGMEM const PROGMEM char PROGMEM *PROGMEM ) "bbbbbbbbbbb" , }
#define Item2_init { 1, (PROGMEM const PROGMEM char PROGMEM *PROGMEM ) "ccccccccc", }
Item_t Item[3]={Item0_init,Item1_init,Item2_init};
int main(void) { while(1); }
|