summaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2025-11-08 20:49:15 +0000
committerGitHub <noreply@github.com>2025-11-08 20:49:15 +0000
commit00eebfb575d6ea0660755cee2c6ccf3b21110312 (patch)
tree45369d486e078724f80bae46d97da3b1c03c56ff /platforms
parent22b213e1915a49cc8419fe0d449ca26fb372b43c (diff)
Fix pmw33xx sensor initialisation (#25777)
Diffstat (limited to 'platforms')
-rw-r--r--platforms/progmem.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/platforms/progmem.h b/platforms/progmem.h
index 3a7a169682..6c4ebcaa01 100644
--- a/platforms/progmem.h
+++ b/platforms/progmem.h
@@ -7,6 +7,7 @@
7# define PROGMEM 7# define PROGMEM
8# define PSTR(x) x 8# define PSTR(x) x
9# define PGM_P const char* 9# define PGM_P const char*
10# define memcmp_P(s1, s2, n) memcmp(s1, s2, n)
10# define memcpy_P(dest, src, n) memcpy(dest, src, n) 11# define memcpy_P(dest, src, n) memcpy(dest, src, n)
11# define pgm_read_byte(address_short) *((uint8_t*)(address_short)) 12# define pgm_read_byte(address_short) *((uint8_t*)(address_short))
12# define pgm_read_word(address_short) *((uint16_t*)(address_short)) 13# define pgm_read_word(address_short) *((uint16_t*)(address_short))