#ifndef PROGMEM_H #define PROGMEM_H 1 #if defined(__AVR__) # include #else # define PROGMEM # define pgm_read_byte(p) *((unsigned char*)(p)) # define pgm_read_word(p) *((uint16_t*)(p)) # define pgm_read_dword(p) *((uint32_t*)(p)) #endif #endif ation/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
blob: 359424151d2b2af6bf19f2621664660adf7767c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14