Go to the source code of this file.
◆ pgm_read_byte
| #define pgm_read_byte |
( |
|
addr | ) |
(*(const unsigned char *)(addr)) |
◆ pgm_read_dword
| #define pgm_read_dword |
( |
|
addr | ) |
|
Value: ({ \
typeof(addr) _addr = (addr); \
*(const unsigned long *)(_addr); \
})
Definition at line 26 of file progmem.h.
◆ pgm_read_float
| #define pgm_read_float |
( |
|
addr | ) |
|
Value: ({ \
typeof(addr) _addr = (addr); \
*(const float *)(_addr); \
})
Definition at line 34 of file progmem.h.
◆ pgm_read_ptr
| #define pgm_read_ptr |
( |
|
addr | ) |
|
Value: ({ \
typeof(addr) _addr = (addr); \
*(void *const *)(_addr); \
})
Definition at line 42 of file progmem.h.
◆ pgm_read_word
| #define pgm_read_word |
( |
|
addr | ) |
|
Value: ({ \
typeof(addr) _addr = (addr); \
*(const unsigned short *)(_addr); \
})
Definition at line 18 of file progmem.h.
◆ PROGMEM