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

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

#endif