Files

copied
Last update 2 years 9 months by eddyluursema
FilesDCCplusplusDCCpp_Uno_VT100
..
Accessories.cpp
Accessories.h
Comm.h
Config.h
CurrentMonitor.cpp
CurrentMonitor.h
DCCpp_Uno.h
DCCpp_Uno_VT100.ino
EEStore.cpp
EEStore.h
Outputs.cpp
Outputs.h
PacketRegister.cpp
PacketRegister.h
Sensor.cpp
Sensor.h
SerialCommand.cpp
SerialCommand.h
EEStore.h
/********************************************************************** EEStore.h COPYRIGHT (c) 2013-2016 Gregg E. Berman Part of DCC++ BASE STATION for the Arduino **********************************************************************/ #ifndef EEStore_h #define EEStore_h #define EESTORE_ID "DCC++" struct EEStoreData{ char id[sizeof(EESTORE_ID)]; int nTurnouts; int nSensors; int nOutputs; }; struct EEStore{ static EEStore *eeStore; EEStoreData data; static int eeAddress; static void init(); static void reset(); static int pointer(); static void advance(int); static void store(); static void clear(); }; #endif
Report a bug