summaryrefslogtreecommitdiffstats
path: root/common/progmem.h
blob: 199b1bedfea9f7018903420ddca146da38482a60 (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)     *(p)
#   define pgm_read_word(p)     *(p)
#endif

#endif