summaryrefslogtreecommitdiff
path: root/platforms/progmem.h
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2021-12-07 09:27:44 -0800
committerDrashna Jael're <drashna@live.com>2021-12-07 09:27:44 -0800
commit7c18b1c9d3d968ded45e072af3483547c3ec7859 (patch)
treeed7c8a4176033046eacff21228364290b44fcfdb /platforms/progmem.h
parent43002bdf77ab0f48af6b04e87edcc37f7cb7b905 (diff)
parent6d0a62920410f50d7f6707960ca1ca0c8fd1d1fa (diff)
Merge commit '6d0a62920410f50d7f6707960ca1ca0c8fd1d1fa' into firmware21
Diffstat (limited to 'platforms/progmem.h')
-rw-r--r--platforms/progmem.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/platforms/progmem.h b/platforms/progmem.h
new file mode 100644
index 0000000000..3a7a169682
--- /dev/null
+++ b/platforms/progmem.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#if defined(__AVR__)
+# include <avr/pgmspace.h>
+#else
+# include <string.h>
+# define PROGMEM
+# define PSTR(x) x
+# define PGM_P const char*
+# define memcpy_P(dest, src, n) memcpy(dest, src, n)
+# 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 strcmp_P(s1, s2) strcmp(s1, s2)
+# define strcpy_P(dest, src) strcpy(dest, src)
+# define strlen_P(src) strlen(src)
+#endif