This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2015-04-09 16:32:04 +00:00
|
|
|
#ifndef PROGMEM_H
|
|
|
|
#define PROGMEM_H 1
|
|
|
|
|
|
|
|
#if defined(__AVR__)
|
|
|
|
# include <avr/pgmspace.h>
|
|
|
|
#elif defined(__arm__)
|
|
|
|
# define PROGMEM
|
2015-09-07 20:33:06 +00:00
|
|
|
# define pgm_read_byte(p) *((unsigned char*)p)
|
|
|
|
# define pgm_read_word(p) *((uint16_t*)p)
|
2015-04-09 16:32:04 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|