mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 16:16:13 +01:00
74c22c83fc
ALL these changes should be portable back to master
10 lines
156 B
C
10 lines
156 B
C
#ifndef FSH_h
|
|
#define FSH_h
|
|
#include <Arduino.h>
|
|
#if defined(ARDUINO_ARCH_MEGAAVR)
|
|
typedef char FSH;
|
|
#else
|
|
typedef __FlashStringHelper FSH;
|
|
#endif
|
|
#endif
|