summaryrefslogtreecommitdiff
path: root/tmk_core/common/progmem.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-11-19 18:41:02 +0000
committerGitHub <noreply@github.com>2021-11-19 10:41:02 -0800
commit2728603fe6d73e805a539d337fd01051c46ca806 (patch)
tree5c83ffc7efa112da870bd5d8502a9d91d4792f35 /tmk_core/common/progmem.h
parent43b9e23bae12916d5161f03700c9bfe46737324b (diff)
Move tmk_core/common/<plat> (#13918)
Diffstat (limited to 'tmk_core/common/progmem.h')
-rw-r--r--tmk_core/common/progmem.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/tmk_core/common/progmem.h b/tmk_core/common/progmem.h
deleted file mode 100644
index a70d8e299f..0000000000
--- a/tmk_core/common/progmem.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#if defined(__AVR__)
-# include <avr/pgmspace.h>
-#else
-# include <string.h>
-# define PROGMEM
-# define __flash
-# 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