mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
12 lines
262 B
C
12 lines
262 B
C
|
#include <Arduino.h>
|
||
|
class Railcom {
|
||
|
public:
|
||
|
static void startCutout();
|
||
|
static void interrupt();
|
||
|
private:
|
||
|
static byte interruptState;
|
||
|
static byte bitsReceived;
|
||
|
static const byte MAX_BUFFER=20;
|
||
|
static byte buffer[MAX_BUFFER];
|
||
|
};
|