summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/progmem.h
blob: de931383972ddf1cf8280e42247b8052c8464590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PROGMEM_H
#define PROGMEM_H 1

#if defined(__AVR__)
#   include <avr/pgmspace.h>
#else
#   define PROGMEM
#   define pgm_read_byte(p)     *((unsigned char*)(p))
#   define pgm_read_word(p)     *((uint16_t*)(p))
#   define pgm_read_dword(p)    *((uint32_t*)(p))
#endif

#endif