1
0
Fork 0

Move tmk_core/common/<plat> (#13918)

This commit is contained in:
Joel Challis 2021-11-19 18:41:02 +00:00 committed by GitHub
parent 43b9e23bae
commit 2728603fe6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
107 changed files with 54 additions and 54 deletions

19
platforms/progmem.h Normal file
View file

@ -0,0 +1,19 @@
#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