1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/src/main.cpp

38 lines
1.1 KiB
C++
Raw Normal View History

2020-05-25 09:43:34 +02:00
#include <Arduino.h>
#include <CommandStation.h>
#include <ArduinoTimers.h>
2020-05-25 09:43:34 +02:00
DCC* mainTrack = DCC::Create_WSM_SAMCommandStation_Main(50);
DCC* progTrack = DCC::Create_WSM_SAMCommandStation_Prog(2);
void main_IrqHandler() {
mainTrack->interrupt_handler();
progTrack->interrupt_handler();
}
void setup() {
#if defined (ATSAMD21G)
CommManager::registerInterface(new USBInterface(SerialUSB)); // Register SerialUSB as an interface
2020-05-25 09:43:34 +02:00
TimerTCC0.initialize();
TimerTCC0.setPeriod(58);
TimerTCC0.attachInterrupt(main_IrqHandler);
TimerTCC0.start();
2020-05-25 09:43:34 +02:00
#elif defined(ATMEGA2560)
CommManager::registerInterface(new SerialInterface(Serial)); // Register Serial (USB port on mega/uno) as an interface
Timer3.initialize();
Timer3.setPeriod(58);
Timer3.attachInterrupt(main_IrqHandler);
2020-05-25 09:43:34 +02:00
Timer3.start();
#endif
StringParser::init(mainTrack, progTrack); // Set up the string parser to accept commands from the interfaces
CommManager::showInitInfo();
}
void loop() {
CommManager::update();
mainTrack->check();
progTrack->check();
}