summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/progmem.h
blob: dcc9efb3cef832b7d32b6b98a000c1be52ca7bcf (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