1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-23 21:01:25 +01:00

Merge pull request #1 from davidcutting42/railcom

Railcom support
This commit is contained in:
David Cutting 2020-06-01 23:34:48 -06:00 committed by GitHub
commit 545eb54ee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 14 deletions

View File

@ -24,7 +24,6 @@ upload_protocol = atmel-ice
lib_deps =
${env.lib_deps}
SparkFun External EEPROM Arduino Library
build_flags = -D ATSAMD21G
[env:mega2560]
platform = atmelavr
@ -33,7 +32,6 @@ framework = arduino
lib_deps =
${env.lib_deps}
DIO2
build_flags = -D ATMEGA2560
[env:mega328]
platform = atmelavr
@ -41,5 +39,4 @@ board = uno
framework = arduino
lib_deps =
${env.lib_deps}
DIO2
build_flags = -D ATMEGA328
DIO2

View File

@ -2,34 +2,44 @@
#include <CommandStation.h>
#include <ArduinoTimers.h>
#define DCC_IRQ_MICROSECONDS 58
#define DCC_IRQ_MICROSECONDS 29
////////////////////////////////////////////////////////////////
// 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_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(50);
DCC* progTrack = DCC::Create_Pololu_MC33926Shield_Prog(2);
// DCC* mainTrack = DCC::Create_Pololu_MC33926Shield_Main(50);
// DCC* progTrack = DCC::Create_Pololu_MC33926Shield_Prog(2);
////////////////////////////////////////////////////////////////
void main_IrqHandler() {
void waveform_IrqHandler() {
mainTrack->interruptHandler();
progTrack->interruptHandler();
}
#if defined(ARDUINO_ARCH_SAMD)
void SERCOM4_Handler()
{
mainTrack->hdw.railcom_serial->IrqHandler();
}
#endif
void setup() {
mainTrack->hdw.init();
progTrack->hdw.init();
// 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.attachInterrupt(waveform_IrqHandler);
TimerA.start();
#if defined (ARDUINO_ARCH_SAMD)
@ -41,12 +51,13 @@ void setup() {
EEStore::init();
StringParser::init(mainTrack, progTrack); // Set up the string parser to accept commands from the interfaces
CommManager::showInitInfo();
JMRIParser::init(mainTrack, progTrack); // Set up the string parser to accept commands from the interfaces
CommManager::showInitInfo();
}
void loop() {
CommManager::update();
mainTrack->loop();
progTrack->loop();
}
}