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

67 lines
1.8 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
const uint8_t kIRQmicros = 29;
const uint8_t kNumLocos = 50;
2020-05-26 11:16:05 +02:00
////////////////////////////////////////////////////////////////
// Motor driver selection:
// Comment out all but the two lines that you want to use
// DCCMain* mainTrack = DCCMain::Create_WSM_SAMCommandStation_Main(kNumLocos);
// DCCService* progTrack = DCCService::Create_WSM_SAMCommandStation_Prog();
2020-05-26 11:16:05 +02:00
// DCCMain* mainTrack = DCCMain::Create_Arduino_L298Shield_Main(kNumLocos);
// DCCService* progTrack = DCCService::Create_Arduino_L298Shield_Prog();
DCCMain* mainTrack = DCCMain::Create_Pololu_MC33926Shield_Main(kNumLocos);
DCCService* progTrack = DCCService::Create_Pololu_MC33926Shield_Prog();
2020-05-26 11:16:05 +02:00
////////////////////////////////////////////////////////////////
2020-05-25 09:43:34 +02:00
void waveform_IrqHandler() {
mainTrack->interruptHandler();
progTrack->interruptHandler();
2020-05-25 09:43:34 +02:00
}
#if defined(ARDUINO_ARCH_SAMD)
void SERCOM4_Handler()
{
mainTrack->railcom.getSerial()->IrqHandler();
}
#endif
2020-05-25 09:43:34 +02:00
void setup() {
mainTrack->setup();
progTrack->setup();
// TimerA is TCC0 on SAMD21, Timer1 on MEGA2560, and Timer1 on MEGA328
// We will fire an interrupt every 29us to generate the signal on the track
TimerA.initialize();
TimerA.setPeriod(kIRQmicros);
TimerA.attachInterrupt(waveform_IrqHandler);
TimerA.start();
2020-05-26 11:16:05 +02:00
#if defined (ARDUINO_ARCH_SAMD)
CommManager::registerInterface(new USBInterface(SerialUSB));
Wire.begin(); // Needed for EEPROM to work
2020-05-26 11:16:05 +02:00
#elif defined(ARDUINO_ARCH_AVR)
CommManager::registerInterface(new SerialInterface(Serial));
2020-05-25 09:43:34 +02:00
#endif
EEStore::init();
2020-05-26 11:16:05 +02:00
// Set up the string parser to accept commands from the interfaces
DCCEXParser::init(mainTrack, progTrack);
CommManager::showInitInfo();
2020-05-25 09:43:34 +02:00
}
void loop() {
CommManager::update();
mainTrack->loop();
progTrack->loop();
2020-05-30 11:03:19 +02:00
}