2020-05-25 09:43:34 +02:00
|
|
|
#include <Arduino.h>
|
|
|
|
#include <CommandStation.h>
|
2020-05-25 12:56:03 +02:00
|
|
|
#include <ArduinoTimers.h>
|
2020-05-25 09:43:34 +02:00
|
|
|
|
2020-05-26 11:16:05 +02:00
|
|
|
#define DCC_IRQ_MICROSECONDS 58
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// Motor driver selection:
|
|
|
|
// Comment out all but the two lines that you want to use
|
|
|
|
|
|
|
|
// ;DCC* mainTrack = DCC::Create_WSM_SAMCommandStation_Main(50);
|
|
|
|
// DCC* progTrack = DCC::Create_WSM_SAMCommandStation_Prog(2);
|
|
|
|
|
|
|
|
// DCC* mainTrack = DCC::Create_Arduino_L298Shield_Main(50);
|
|
|
|
// DCC* progTrack = DCC::Create_Arduino_L298Shield_Prog(2);
|
|
|
|
|
|
|
|
DCC* mainTrack = DCC::Create_Pololu_MC33926Shield_Main(10);
|
|
|
|
DCC* progTrack = DCC::Create_Pololu_MC33926Shield_Prog(2);
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
2020-05-25 09:43:34 +02:00
|
|
|
|
|
|
|
void main_IrqHandler() {
|
2020-05-26 11:16:05 +02:00
|
|
|
mainTrack->interruptHandler();
|
|
|
|
progTrack->interruptHandler();
|
2020-05-25 09:43:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void setup() {
|
2020-05-26 11:16:05 +02:00
|
|
|
// TimerA is TCC0 on SAMD21, Timer1 on MEGA2560, and Timer1 on MEGA328
|
|
|
|
// We will fire an interrupt every 58us to generate the signal on the track
|
|
|
|
TimerA.initialize();
|
|
|
|
TimerA.setPeriod(DCC_IRQ_MICROSECONDS);
|
|
|
|
TimerA.attachInterrupt(main_IrqHandler);
|
|
|
|
TimerA.start();
|
|
|
|
|
|
|
|
#if defined (ARDUINO_ARCH_SAMD)
|
2020-05-25 12:56:03 +02:00
|
|
|
CommManager::registerInterface(new USBInterface(SerialUSB)); // Register SerialUSB as an interface
|
2020-05-26 11:16:05 +02:00
|
|
|
#elif defined(ARDUINO_ARCH_AVR)
|
2020-05-25 09:43:34 +02:00
|
|
|
CommManager::registerInterface(new SerialInterface(Serial)); // Register Serial (USB port on mega/uno) as an interface
|
|
|
|
#endif
|
|
|
|
|
2020-05-26 11:16:05 +02:00
|
|
|
//EEStore::init();
|
|
|
|
|
2020-05-25 09:43:34 +02:00
|
|
|
StringParser::init(mainTrack, progTrack); // Set up the string parser to accept commands from the interfaces
|
|
|
|
CommManager::showInitInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
CommManager::update();
|
2020-05-26 11:16:05 +02:00
|
|
|
mainTrack->loop();
|
|
|
|
progTrack->loop();
|
2020-05-25 09:43:34 +02:00
|
|
|
}
|