Browse Source

Fix `pgm_read_ptr()` define for ARM (#8658)

pull/8621/head 0.8.93
Ryan 4 years ago
committed by GitHub
parent
commit
2b427f774a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/common/progmem.h

+ 1
- 1
tmk_core/common/progmem.h View File

@ -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)


Loading…
Cancel
Save