qmk-dactyl-manuform-a/common/progmem.h

12 lines
183 B
C
Raw Normal View History

2014-06-17 15:41:14 +02:00
#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)
#endif
#endif