~ruther/qmk_firmware

ref: e3d367df8ad3b8be85d686305f26b7908a7192e0 qmk_firmware/platforms/progmem.h -rw-r--r-- 642 bytes
e3d367df — Alin Marin Elena Add 5x13 and 6x13 ortho community layouts (#22315) 1 year, 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
Do not follow this link