~ruther/qmk_firmware

2b427f774a6665819306cf716d79355db3f7d169 — Ryan 5 years ago 8544417
Fix `pgm_read_ptr()` define for ARM (#8658)

1 files changed, 1 insertions(+), 1 deletions(-)

M tmk_core/common/progmem.h
M tmk_core/common/progmem.h => tmk_core/common/progmem.h +1 -1
@@ 8,7 8,7 @@
#    define pgm_read_byte(address_short) *((uint8_t*)(address_short))
#    define pgm_read_word(address_short) *((uint16_t*)(address_short))
#    define pgm_read_dword(address_short) *((uint32_t*)(address_short))
#    define pgm_read_ptr(address_short) *((void*)(address_short))
#    define pgm_read_ptr(address_short) *((void**)(address_short))
#    define strcmp_P(s1, s2) strcmp(s1, s2)
#    define strcpy_P(dest, src) strcpy(dest, src)
#    define strlen_P(src) strlen(src)