1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 16:16:13 +01:00
CommandStation-EX/FSH.h
Asbelos 74c22c83fc FlasString and Timers for Uno Wifi
ALL these changes should be portable back to master
2020-12-09 11:57:38 +00:00

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