diff options
Diffstat (limited to 'tmk_core/common/progmem.h')
-rw-r--r-- | tmk_core/common/progmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/progmem.h b/tmk_core/common/progmem.h index be8485117..39a918fe9 100644 --- a/tmk_core/common/progmem.h +++ b/tmk_core/common/progmem.h | |||
@@ -8,7 +8,7 @@ | |||
8 | # define pgm_read_byte(address_short) *((uint8_t*)(address_short)) | 8 | # define pgm_read_byte(address_short) *((uint8_t*)(address_short)) |
9 | # define pgm_read_word(address_short) *((uint16_t*)(address_short)) | 9 | # define pgm_read_word(address_short) *((uint16_t*)(address_short)) |
10 | # define pgm_read_dword(address_short) *((uint32_t*)(address_short)) | 10 | # define pgm_read_dword(address_short) *((uint32_t*)(address_short)) |
11 | # define pgm_read_ptr(address_short) *((void*)(address_short)) | 11 | # define pgm_read_ptr(address_short) *((void**)(address_short)) |
12 | # define strcmp_P(s1, s2) strcmp(s1, s2) | 12 | # define strcmp_P(s1, s2) strcmp(s1, s2) |
13 | # define strcpy_P(dest, src) strcpy(dest, src) | 13 | # define strcpy_P(dest, src) strcpy(dest, src) |
14 | # define strlen_P(src) strlen(src) | 14 | # define strlen_P(src) strlen(src) |