2022-02-22 02:27:27 +01:00
|
|
|
/*
|
|
|
|
* © 2022 Chris Harlow
|
2022-06-11 20:38:44 +02:00
|
|
|
* © 2022 Harald Barth
|
2022-02-22 02:27:27 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2022-03-18 21:03:19 +01:00
|
|
|
* This file is part of DCC++EX
|
2022-02-22 02:27:27 +01:00
|
|
|
*
|
|
|
|
* This is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include "TrackManager.h"
|
|
|
|
#include "FSH.h"
|
2022-02-23 16:44:34 +01:00
|
|
|
#include "DCCWaveform.h"
|
2022-02-28 11:38:26 +01:00
|
|
|
#include "DCC.h"
|
2022-02-22 02:27:27 +01:00
|
|
|
#include "MotorDriver.h"
|
2022-05-10 23:37:24 +02:00
|
|
|
#include "DCCTimer.h"
|
2022-02-22 02:27:27 +01:00
|
|
|
#include "DIAG.h"
|
2023-03-06 12:57:14 +01:00
|
|
|
#include"CommandDistributor.h"
|
2022-02-22 02:27:27 +01:00
|
|
|
// Virtualised Motor shield multi-track hardware Interface
|
2022-02-28 10:32:26 +01:00
|
|
|
#define FOR_EACH_TRACK(t) for (byte t=0;t<=lastTrack;t++)
|
|
|
|
|
|
|
|
#define APPLY_BY_MODE(findmode,function) \
|
|
|
|
FOR_EACH_TRACK(t) \
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==findmode) \
|
2022-02-22 02:27:27 +01:00
|
|
|
track[t]->function;
|
2023-04-23 20:24:29 +02:00
|
|
|
#ifndef DISABLE_PROG
|
2022-02-22 02:27:27 +01:00
|
|
|
const int16_t HASH_KEYWORD_PROG = -29718;
|
2023-04-23 20:24:29 +02:00
|
|
|
#endif
|
2022-02-22 02:27:27 +01:00
|
|
|
const int16_t HASH_KEYWORD_MAIN = 11339;
|
2022-02-24 12:58:40 +01:00
|
|
|
const int16_t HASH_KEYWORD_OFF = 22479;
|
|
|
|
const int16_t HASH_KEYWORD_DC = 2183;
|
2022-03-19 17:26:29 +01:00
|
|
|
const int16_t HASH_KEYWORD_DCX = 6463; // DC reversed polarity
|
2022-05-18 09:40:53 +02:00
|
|
|
const int16_t HASH_KEYWORD_EXT = 8201; // External DCC signal
|
2022-03-18 17:41:52 +01:00
|
|
|
const int16_t HASH_KEYWORD_A = 65; // parser makes single chars the ascii.
|
2022-02-22 02:27:27 +01:00
|
|
|
|
|
|
|
MotorDriver * TrackManager::track[MAX_TRACKS];
|
2022-03-19 17:26:29 +01:00
|
|
|
int16_t TrackManager::trackDCAddr[MAX_TRACKS];
|
|
|
|
|
2022-02-28 10:32:26 +01:00
|
|
|
POWERMODE TrackManager::mainPowerGuess=POWERMODE::OFF;
|
|
|
|
byte TrackManager::lastTrack=0;
|
2022-03-19 12:22:31 +01:00
|
|
|
bool TrackManager::progTrackSyncMain=false;
|
|
|
|
bool TrackManager::progTrackBoosted=false;
|
|
|
|
int16_t TrackManager::joinRelay=UNUSED_PIN;
|
2022-08-17 02:11:51 +02:00
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
byte TrackManager::tempProgTrack=MAX_TRACKS+1;
|
|
|
|
#endif
|
2022-03-19 12:22:31 +01:00
|
|
|
|
2022-10-02 22:53:35 +02:00
|
|
|
#ifdef ANALOG_READ_INTERRUPT
|
2022-10-02 00:43:46 +02:00
|
|
|
/*
|
|
|
|
* sampleCurrent() runs from Interrupt
|
|
|
|
*/
|
|
|
|
void TrackManager::sampleCurrent() {
|
|
|
|
static byte tr = 0;
|
2022-10-02 13:40:46 +02:00
|
|
|
byte trAtStart = tr;
|
2022-10-02 00:43:46 +02:00
|
|
|
static bool waiting = false;
|
|
|
|
|
|
|
|
if (waiting) {
|
|
|
|
if (! track[tr]->sampleCurrentFromHW()) {
|
|
|
|
return; // no result, continue to wait
|
|
|
|
}
|
|
|
|
// found value, advance at least one track
|
2022-10-02 13:40:46 +02:00
|
|
|
// for scope debug track[1]->setBrake(0);
|
2022-10-02 00:43:46 +02:00
|
|
|
waiting = false;
|
|
|
|
tr++;
|
2022-10-02 13:40:46 +02:00
|
|
|
if (tr > lastTrack) tr = 0;
|
2023-07-17 02:26:29 +02:00
|
|
|
if (lastTrack < 2 || track[tr]->getMode() & TRACK_MODE_PROG) {
|
2022-10-02 13:40:46 +02:00
|
|
|
return; // We could continue but for prog track we
|
|
|
|
// rather do it in next interrupt beacuse
|
|
|
|
// that gives us well defined sampling point.
|
|
|
|
// For other tracks we care less unless we
|
|
|
|
// have only few (max 2) tracks.
|
|
|
|
}
|
2022-10-02 00:43:46 +02:00
|
|
|
}
|
|
|
|
if (!waiting) {
|
|
|
|
// look for a valid track to sample or until we are around
|
2022-10-02 13:40:46 +02:00
|
|
|
while (true) {
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[tr]->getMode() & ( TRACK_MODE_MAIN|TRACK_MODE_PROG|TRACK_MODE_DC|TRACK_MODE_DCX|TRACK_MODE_EXT )) {
|
2022-10-02 00:43:46 +02:00
|
|
|
track[tr]->startCurrentFromHW();
|
2022-10-02 13:40:46 +02:00
|
|
|
// for scope debug track[1]->setBrake(1);
|
2022-10-02 00:43:46 +02:00
|
|
|
waiting = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tr++;
|
2022-10-02 13:40:46 +02:00
|
|
|
if (tr > lastTrack) tr = 0;
|
|
|
|
if (tr == trAtStart) // we are through and nothing found to do
|
|
|
|
return;
|
2022-10-02 00:43:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-10-02 22:53:35 +02:00
|
|
|
#endif
|
2022-02-23 16:44:34 +01:00
|
|
|
|
2022-02-28 10:32:26 +01:00
|
|
|
// The setup call is done this way so that the tracks can be in a list
|
|
|
|
// from the config... the tracks default to NULL in the declaration
|
2022-02-22 02:27:27 +01:00
|
|
|
void TrackManager::Setup(const FSH * shieldname,
|
|
|
|
MotorDriver * track0, MotorDriver * track1, MotorDriver * track2,
|
|
|
|
MotorDriver * track3, MotorDriver * track4, MotorDriver * track5,
|
2022-03-01 13:52:25 +01:00
|
|
|
MotorDriver * track6, MotorDriver * track7 ) {
|
2022-02-28 10:32:26 +01:00
|
|
|
addTrack(0,track0);
|
|
|
|
addTrack(1,track1);
|
|
|
|
addTrack(2,track2);
|
|
|
|
addTrack(3,track3);
|
|
|
|
addTrack(4,track4);
|
|
|
|
addTrack(5,track5);
|
|
|
|
addTrack(6,track6);
|
|
|
|
addTrack(7,track7);
|
|
|
|
|
2022-03-19 17:26:29 +01:00
|
|
|
// Default the first 2 tracks (which may be null) and perform HA waveform check.
|
2022-02-23 16:44:34 +01:00
|
|
|
setTrackMode(0,TRACK_MODE_MAIN);
|
2023-04-23 20:24:29 +02:00
|
|
|
#ifndef DISABLE_PROG
|
2022-02-23 16:44:34 +01:00
|
|
|
setTrackMode(1,TRACK_MODE_PROG);
|
2023-04-23 20:24:29 +02:00
|
|
|
#else
|
|
|
|
setTrackMode(1,TRACK_MODE_MAIN);
|
|
|
|
#endif
|
2022-02-28 10:32:26 +01:00
|
|
|
|
2023-06-21 10:44:57 +02:00
|
|
|
// Fault pin config for odd motor boards (example pololu)
|
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
for (byte s=t+1;s<=lastTrack;s++) {
|
|
|
|
if (track[t]->getFaultPin() != UNUSED_PIN &&
|
|
|
|
track[t]->getFaultPin() == track[s]->getFaultPin()) {
|
|
|
|
track[t]->setCommonFaultPin();
|
|
|
|
track[s]->setCommonFaultPin();
|
|
|
|
DIAG(F("Common Fault pin tracks %c and %c"), t+'A', s+'A');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-22 22:57:59 +02:00
|
|
|
DCC::setShieldName(shieldname);
|
2022-02-22 02:27:27 +01:00
|
|
|
}
|
2022-02-28 10:32:26 +01:00
|
|
|
|
|
|
|
void TrackManager::addTrack(byte t, MotorDriver* driver) {
|
2022-05-12 20:59:31 +02:00
|
|
|
track[t]=driver;
|
2022-03-23 18:06:15 +01:00
|
|
|
if (driver) {
|
|
|
|
track[t]->setPower(POWERMODE::OFF);
|
2023-07-17 02:26:29 +02:00
|
|
|
track[t]->setMode(TRACK_MODE_OFF);
|
2023-03-20 21:22:48 +01:00
|
|
|
track[t]->setTrackLetter('A'+t);
|
2022-05-12 20:59:31 +02:00
|
|
|
lastTrack=t;
|
2022-03-23 18:06:15 +01:00
|
|
|
}
|
2022-05-13 00:05:25 +02:00
|
|
|
}
|
|
|
|
|
2022-06-06 23:14:35 +02:00
|
|
|
// setDCCSignal(), called from interrupt context
|
|
|
|
// does assume ports are shadowed if they can be
|
2022-02-22 02:27:27 +01:00
|
|
|
void TrackManager::setDCCSignal( bool on) {
|
2022-06-13 23:18:10 +02:00
|
|
|
HAVE_PORTA(shadowPORTA=PORTA);
|
|
|
|
HAVE_PORTB(shadowPORTB=PORTB);
|
|
|
|
HAVE_PORTC(shadowPORTC=PORTC);
|
2022-08-23 07:56:56 +02:00
|
|
|
APPLY_BY_MODE(TRACK_MODE_MAIN,setSignal(on));
|
2022-06-13 23:18:10 +02:00
|
|
|
HAVE_PORTA(PORTA=shadowPORTA);
|
|
|
|
HAVE_PORTB(PORTB=shadowPORTB);
|
|
|
|
HAVE_PORTC(PORTC=shadowPORTC);
|
2022-02-22 02:27:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TrackManager::setCutout( bool on) {
|
|
|
|
(void) on;
|
2022-05-10 23:42:21 +02:00
|
|
|
// TODO Cutout needs fake ports as well
|
2022-02-28 10:32:26 +01:00
|
|
|
// TODO APPLY_BY_MODE(TRACK_MODE_MAIN,setCutout(on));
|
2022-02-22 02:27:27 +01:00
|
|
|
}
|
|
|
|
|
2022-06-06 23:14:35 +02:00
|
|
|
// setPROGSignal(), called from interrupt context
|
|
|
|
// does assume ports are shadowed if they can be
|
2022-02-22 02:27:27 +01:00
|
|
|
void TrackManager::setPROGSignal( bool on) {
|
2022-06-13 23:18:10 +02:00
|
|
|
HAVE_PORTA(shadowPORTA=PORTA);
|
|
|
|
HAVE_PORTB(shadowPORTB=PORTB);
|
|
|
|
HAVE_PORTC(shadowPORTC=PORTC);
|
2022-08-23 07:56:56 +02:00
|
|
|
APPLY_BY_MODE(TRACK_MODE_PROG,setSignal(on));
|
2022-06-13 23:18:10 +02:00
|
|
|
HAVE_PORTA(PORTA=shadowPORTA);
|
|
|
|
HAVE_PORTB(PORTB=shadowPORTB);
|
|
|
|
HAVE_PORTC(PORTC=shadowPORTC);
|
2022-02-22 02:27:27 +01:00
|
|
|
}
|
|
|
|
|
2022-06-06 23:14:35 +02:00
|
|
|
// setDCSignal(), called from normal context
|
|
|
|
// MotorDriver::setDCSignal handles shadowed IO port changes.
|
|
|
|
// with interrupts turned off around the critical section
|
2022-02-22 02:27:27 +01:00
|
|
|
void TrackManager::setDCSignal(int16_t cab, byte speedbyte) {
|
2022-05-21 10:19:25 +02:00
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
if (trackDCAddr[t]!=cab) continue;
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_DC) track[t]->setDCSignal(speedbyte);
|
|
|
|
else if (track[t]->getMode()==TRACK_MODE_DCX) track[t]->setDCSignal(speedbyte ^ 128);
|
2022-05-21 10:19:25 +02:00
|
|
|
}
|
2022-03-19 17:26:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TrackManager::setTrackMode(byte trackToSet, TRACK_MODE mode, int16_t dcAddr) {
|
2022-02-28 10:32:26 +01:00
|
|
|
if (trackToSet>lastTrack || track[trackToSet]==NULL) return false;
|
2022-03-28 15:44:41 +02:00
|
|
|
|
2023-07-25 11:23:36 +02:00
|
|
|
//DIAG(F("Track=%c Mode=%d"),trackToSet+'A', mode);
|
2022-03-28 15:44:41 +02:00
|
|
|
// DC tracks require a motorDriver that can set brake!
|
2023-08-02 01:02:46 +02:00
|
|
|
if (mode==TRACK_MODE_DC || mode==TRACK_MODE_DCX) {
|
|
|
|
#if defined(ARDUINO_AVR_UNO)
|
|
|
|
DIAG(F("Uno has no PWM timers available for DC"));
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
if (!track[trackToSet]->brakeCanPWM()) {
|
|
|
|
DIAG(F("Brake pin can't PWM: No DC"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-03-28 15:44:41 +02:00
|
|
|
|
2022-08-04 01:21:28 +02:00
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
// remove pin from MUX matrix and turn it off
|
2022-08-13 09:12:53 +02:00
|
|
|
pinpair p = track[trackToSet]->getSignalPin();
|
2022-08-17 02:11:51 +02:00
|
|
|
//DIAG(F("Track=%c remove pin %d"),trackToSet+'A', p.pin);
|
2022-08-13 09:12:53 +02:00
|
|
|
gpio_reset_pin((gpio_num_t)p.pin);
|
|
|
|
pinMode(p.pin, OUTPUT); // gpio_reset_pin may reset to input
|
|
|
|
if (p.invpin != UNUSED_PIN) {
|
2022-08-17 02:11:51 +02:00
|
|
|
//DIAG(F("Track=%c remove ^pin %d"),trackToSet+'A', p.invpin);
|
2022-08-13 09:12:53 +02:00
|
|
|
gpio_reset_pin((gpio_num_t)p.invpin);
|
|
|
|
pinMode(p.invpin, OUTPUT); // gpio_reset_pin may reset to input
|
|
|
|
}
|
2022-08-04 01:21:28 +02:00
|
|
|
#endif
|
2023-04-23 20:24:29 +02:00
|
|
|
#ifndef DISABLE_PROG
|
2022-03-19 17:26:29 +01:00
|
|
|
if (mode==TRACK_MODE_PROG) {
|
2023-04-23 20:24:29 +02:00
|
|
|
#else
|
|
|
|
if (false) {
|
|
|
|
#endif
|
2022-08-02 15:36:51 +02:00
|
|
|
// only allow 1 track to be prog
|
|
|
|
FOR_EACH_TRACK(t)
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_PROG && t != trackToSet) {
|
2022-08-02 15:36:51 +02:00
|
|
|
track[t]->setPower(POWERMODE::OFF);
|
2023-07-17 02:26:29 +02:00
|
|
|
track[t]->setMode(TRACK_MODE_OFF);
|
2022-08-02 15:36:51 +02:00
|
|
|
track[t]->makeProgTrack(false); // revoke prog track special handling
|
2023-03-06 12:57:14 +01:00
|
|
|
streamTrackState(NULL,t);
|
2022-08-02 15:36:51 +02:00
|
|
|
}
|
|
|
|
track[trackToSet]->makeProgTrack(true); // set for prog track special handling
|
2022-04-30 23:24:51 +02:00
|
|
|
} else {
|
2022-08-02 15:36:51 +02:00
|
|
|
track[trackToSet]->makeProgTrack(false); // only the prog track knows it's type
|
2022-02-23 16:44:34 +01:00
|
|
|
}
|
2023-07-17 02:26:29 +02:00
|
|
|
track[trackToSet]->setMode(mode);
|
2022-03-19 17:26:29 +01:00
|
|
|
trackDCAddr[trackToSet]=dcAddr;
|
2023-03-06 12:57:14 +01:00
|
|
|
streamTrackState(NULL,trackToSet);
|
|
|
|
|
2022-03-28 15:44:41 +02:00
|
|
|
// When a track is switched, we must clear any side effects of its previous
|
2022-08-23 07:56:56 +02:00
|
|
|
// state, otherwise trains run away or just dont move.
|
|
|
|
|
|
|
|
// This can be done BEFORE the PWM-Timer evaluation (methinks)
|
|
|
|
if (!(mode==TRACK_MODE_DC || mode==TRACK_MODE_DCX)) {
|
2022-05-21 10:19:25 +02:00
|
|
|
// DCC tracks need to have set the PWM to zero or they will not work.
|
2022-08-10 00:14:28 +02:00
|
|
|
track[trackToSet]->detachDCSignal();
|
2022-05-24 08:07:33 +02:00
|
|
|
track[trackToSet]->setBrake(false);
|
2022-03-28 15:44:41 +02:00
|
|
|
}
|
2022-05-18 09:40:53 +02:00
|
|
|
|
|
|
|
// EXT is a special case where the signal pin is
|
|
|
|
// turned off. So unless that is set, the signal
|
|
|
|
// pin should be turned on
|
|
|
|
track[trackToSet]->enableSignal(mode != TRACK_MODE_EXT);
|
|
|
|
|
2022-08-04 01:21:28 +02:00
|
|
|
#ifndef ARDUINO_ARCH_ESP32
|
2022-02-22 02:27:27 +01:00
|
|
|
// re-evaluate HighAccuracy mode
|
2022-02-28 10:32:26 +01:00
|
|
|
// We can only do this is all main and prog tracks agree
|
2022-02-22 02:27:27 +01:00
|
|
|
bool canDo=true;
|
2022-05-12 20:56:23 +02:00
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
// DC tracks must not have the DCC PWM switched on
|
|
|
|
// so we globally turn it off if one of the PWM
|
|
|
|
// capable tracks is now DC or DCX.
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_DC || track[t]->getMode()==TRACK_MODE_DCX) {
|
2022-05-12 20:56:23 +02:00
|
|
|
if (track[t]->isPWMCapable()) {
|
2022-06-11 19:57:45 +02:00
|
|
|
canDo=false; // this track is capable but can not run PWM
|
|
|
|
break; // in this mode, so abort and prevent globally below
|
|
|
|
} else {
|
|
|
|
track[t]->trackPWM=false; // this track sure can not run with PWM
|
|
|
|
//DIAG(F("Track %c trackPWM 0 (not capable)"), t+'A');
|
2022-05-12 20:56:23 +02:00
|
|
|
}
|
2023-07-17 02:26:29 +02:00
|
|
|
} else if (track[t]->getMode()==TRACK_MODE_MAIN || track[t]->getMode()==TRACK_MODE_PROG) {
|
2022-06-11 19:57:45 +02:00
|
|
|
track[t]->trackPWM = track[t]->isPWMCapable(); // trackPWM is still a guess here
|
|
|
|
//DIAG(F("Track %c trackPWM %d"), t+'A', track[t]->trackPWM);
|
|
|
|
canDo &= track[t]->trackPWM;
|
|
|
|
}
|
2022-05-12 20:56:23 +02:00
|
|
|
}
|
2022-05-10 23:37:24 +02:00
|
|
|
if (!canDo) {
|
2022-06-11 19:57:45 +02:00
|
|
|
// if we discover that HA mode was globally impossible
|
|
|
|
// we must adjust the trackPWM capabilities
|
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
track[t]->trackPWM=false;
|
|
|
|
//DIAG(F("Track %c trackPWM 0 (global override)"), t+'A');
|
|
|
|
}
|
|
|
|
DCCTimer::clearPWM(); // has to be AFTER trackPWM changes because if trackPWM==true this is undone for that track
|
2022-05-10 23:37:24 +02:00
|
|
|
}
|
2022-08-04 01:21:28 +02:00
|
|
|
#else
|
2022-08-23 07:56:56 +02:00
|
|
|
// For ESP32 we just reinitialize the DCC Waveform
|
2022-08-04 01:21:28 +02:00
|
|
|
DCCWaveform::begin();
|
|
|
|
#endif
|
2022-08-23 07:56:56 +02:00
|
|
|
|
|
|
|
// This block must be AFTER the PWM-Timer modifications
|
|
|
|
if (mode==TRACK_MODE_DC || mode==TRACK_MODE_DCX) {
|
|
|
|
// DC tracks need to be given speed of the throttle for that cab address
|
|
|
|
// otherwise will not match other tracks on same cab.
|
|
|
|
// This also needs to allow for inverted DCX
|
|
|
|
applyDCSpeed(trackToSet);
|
|
|
|
}
|
|
|
|
|
2022-03-23 18:06:15 +01:00
|
|
|
// Normal running tracks are set to the global power state
|
|
|
|
track[trackToSet]->setPower(
|
2022-05-24 08:07:33 +02:00
|
|
|
(mode==TRACK_MODE_MAIN || mode==TRACK_MODE_DC || mode==TRACK_MODE_DCX || mode==TRACK_MODE_EXT) ?
|
2022-03-23 18:06:15 +01:00
|
|
|
mainPowerGuess : POWERMODE::OFF);
|
2022-05-10 23:37:24 +02:00
|
|
|
//DIAG(F("TrackMode=%d"),mode);
|
2022-02-22 02:27:27 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-03-31 23:19:13 +02:00
|
|
|
void TrackManager::applyDCSpeed(byte t) {
|
2022-06-05 23:07:03 +02:00
|
|
|
uint8_t speedByte=DCC::getThrottleSpeedByte(trackDCAddr[t]);
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_DCX)
|
2022-06-06 23:14:35 +02:00
|
|
|
speedByte = speedByte ^ 128; // reverse direction bit
|
2022-06-05 23:07:03 +02:00
|
|
|
track[t]->setDCSignal(speedByte);
|
2022-03-31 23:19:13 +02:00
|
|
|
}
|
|
|
|
|
2022-02-22 02:27:27 +01:00
|
|
|
bool TrackManager::parseJ(Print *stream, int16_t params, int16_t p[])
|
|
|
|
{
|
|
|
|
|
2022-03-18 17:41:52 +01:00
|
|
|
if (params==0) { // <=> List track assignments
|
2022-02-28 10:32:26 +01:00
|
|
|
FOR_EACH_TRACK(t)
|
2023-03-06 12:57:14 +01:00
|
|
|
streamTrackState(stream,t);
|
2022-02-22 02:27:27 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-03-18 17:41:52 +01:00
|
|
|
p[0]-=HASH_KEYWORD_A; // convert A... to 0....
|
|
|
|
|
|
|
|
if (params>1 && (p[0]<0 || p[0]>=MAX_TRACKS))
|
2022-02-22 02:27:27 +01:00
|
|
|
return false;
|
|
|
|
|
2022-03-18 17:41:52 +01:00
|
|
|
if (params==2 && p[1]==HASH_KEYWORD_MAIN) // <= id MAIN>
|
|
|
|
return setTrackMode(p[0],TRACK_MODE_MAIN);
|
2022-02-22 02:27:27 +01:00
|
|
|
|
2023-04-23 20:24:29 +02:00
|
|
|
#ifndef DISABLE_PROG
|
2022-03-18 17:41:52 +01:00
|
|
|
if (params==2 && p[1]==HASH_KEYWORD_PROG) // <= id PROG>
|
|
|
|
return setTrackMode(p[0],TRACK_MODE_PROG);
|
2023-04-23 20:24:29 +02:00
|
|
|
#endif
|
2022-02-22 02:27:27 +01:00
|
|
|
|
2022-03-18 17:41:52 +01:00
|
|
|
if (params==2 && p[1]==HASH_KEYWORD_OFF) // <= id OFF>
|
|
|
|
return setTrackMode(p[0],TRACK_MODE_OFF);
|
2022-05-18 09:40:53 +02:00
|
|
|
|
|
|
|
if (params==2 && p[1]==HASH_KEYWORD_EXT) // <= id EXT>
|
|
|
|
return setTrackMode(p[0],TRACK_MODE_EXT);
|
|
|
|
|
2022-03-18 21:03:19 +01:00
|
|
|
if (params==3 && p[1]==HASH_KEYWORD_DC && p[2]>0) // <= id DC cab>
|
2022-03-19 17:26:29 +01:00
|
|
|
return setTrackMode(p[0],TRACK_MODE_DC,p[2]);
|
|
|
|
|
|
|
|
if (params==3 && p[1]==HASH_KEYWORD_DCX && p[2]>0) // <= id DCX cab>
|
|
|
|
return setTrackMode(p[0],TRACK_MODE_DCX,p[2]);
|
2022-02-22 02:27:27 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-03-06 12:57:14 +01:00
|
|
|
void TrackManager::streamTrackState(Print* stream, byte t) {
|
|
|
|
// null stream means send to commandDistributor for broadcast
|
|
|
|
if (track[t]==NULL) return;
|
|
|
|
auto format=F("");
|
2023-07-17 02:26:29 +02:00
|
|
|
switch(track[t]->getMode()) {
|
2023-03-06 12:57:14 +01:00
|
|
|
case TRACK_MODE_MAIN:
|
|
|
|
format=F("<= %c MAIN>\n");
|
|
|
|
break;
|
2023-04-23 20:24:29 +02:00
|
|
|
#ifndef DISABLE_PROG
|
2023-03-06 12:57:14 +01:00
|
|
|
case TRACK_MODE_PROG:
|
|
|
|
format=F("<= %c PROG>\n");
|
|
|
|
break;
|
2023-04-23 20:24:29 +02:00
|
|
|
#endif
|
2023-03-06 12:57:14 +01:00
|
|
|
case TRACK_MODE_OFF:
|
|
|
|
format=F("<= %c OFF>\n");
|
|
|
|
break;
|
|
|
|
case TRACK_MODE_EXT:
|
|
|
|
format=F("<= %c EXT>\n");
|
|
|
|
break;
|
|
|
|
case TRACK_MODE_DC:
|
|
|
|
format=F("<= %c DC %d>\n");
|
|
|
|
break;
|
|
|
|
case TRACK_MODE_DCX:
|
|
|
|
format=F("<= %c DCX %d>\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break; // unknown, dont care
|
|
|
|
}
|
|
|
|
if (stream) StringFormatter::send(stream,format,'A'+t,trackDCAddr[t]);
|
|
|
|
else CommandDistributor::broadcastTrackState(format,'A'+t,trackDCAddr[t]);
|
|
|
|
}
|
|
|
|
|
2022-02-23 16:44:34 +01:00
|
|
|
byte TrackManager::nextCycleTrack=MAX_TRACKS;
|
|
|
|
|
2022-03-19 12:22:31 +01:00
|
|
|
void TrackManager::loop() {
|
2023-04-23 20:24:29 +02:00
|
|
|
DCCWaveform::loop();
|
|
|
|
#ifndef DISABLE_PROG
|
|
|
|
DCCACK::loop();
|
|
|
|
#endif
|
2022-03-19 12:22:31 +01:00
|
|
|
bool dontLimitProg=DCCACK::isActive() || progTrackSyncMain || progTrackBoosted;
|
2022-02-23 16:44:34 +01:00
|
|
|
nextCycleTrack++;
|
2022-02-28 10:32:26 +01:00
|
|
|
if (nextCycleTrack>lastTrack) nextCycleTrack=0;
|
2022-02-23 16:44:34 +01:00
|
|
|
if (track[nextCycleTrack]==NULL) return;
|
|
|
|
MotorDriver * motorDriver=track[nextCycleTrack];
|
2023-07-17 02:26:29 +02:00
|
|
|
bool useProgLimit=dontLimitProg? false: track[nextCycleTrack]->getMode()==TRACK_MODE_PROG;
|
2022-02-23 16:44:34 +01:00
|
|
|
motorDriver->checkPowerOverload(useProgLimit, nextCycleTrack);
|
|
|
|
}
|
2022-02-22 02:27:27 +01:00
|
|
|
|
2022-02-23 16:44:34 +01:00
|
|
|
MotorDriver * TrackManager::getProgDriver() {
|
2022-02-28 10:32:26 +01:00
|
|
|
FOR_EACH_TRACK(t)
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_PROG) return track[t];
|
2022-02-23 16:44:34 +01:00
|
|
|
return NULL;
|
2022-03-31 23:19:13 +02:00
|
|
|
}
|
|
|
|
|
2022-08-01 22:56:56 +02:00
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
std::vector<MotorDriver *>TrackManager::getMainDrivers() {
|
|
|
|
std::vector<MotorDriver *> v;
|
|
|
|
FOR_EACH_TRACK(t)
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_MAIN) v.push_back(track[t]);
|
2022-08-01 22:56:56 +02:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-02-23 16:44:34 +01:00
|
|
|
void TrackManager::setPower2(bool setProg,POWERMODE mode) {
|
2022-03-31 23:19:13 +02:00
|
|
|
if (!setProg) mainPowerGuess=mode;
|
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
MotorDriver * driver=track[t];
|
|
|
|
if (!driver) continue;
|
2023-07-17 02:26:29 +02:00
|
|
|
switch (track[t]->getMode()) {
|
2022-03-31 23:19:13 +02:00
|
|
|
case TRACK_MODE_MAIN:
|
|
|
|
if (setProg) break;
|
|
|
|
// toggle brake before turning power on - resets overcurrent error
|
2022-05-18 09:40:53 +02:00
|
|
|
// on the Pololu board if brake is wired to ^D2.
|
|
|
|
// XXX see if we can make this conditional
|
2022-03-31 23:19:13 +02:00
|
|
|
driver->setBrake(true);
|
|
|
|
driver->setBrake(false); // DCC runs with brake off
|
|
|
|
driver->setPower(mode);
|
|
|
|
break;
|
|
|
|
case TRACK_MODE_DC:
|
|
|
|
case TRACK_MODE_DCX:
|
|
|
|
if (setProg) break;
|
|
|
|
driver->setBrake(true); // DC starts with brake on
|
|
|
|
applyDCSpeed(t); // speed match DCC throttles
|
|
|
|
driver->setPower(mode);
|
|
|
|
break;
|
|
|
|
case TRACK_MODE_PROG:
|
|
|
|
if (!setProg) break;
|
|
|
|
driver->setBrake(true);
|
|
|
|
driver->setBrake(false);
|
|
|
|
driver->setPower(mode);
|
|
|
|
break;
|
2022-05-18 09:40:53 +02:00
|
|
|
case TRACK_MODE_EXT:
|
|
|
|
driver->setBrake(true);
|
|
|
|
driver->setBrake(false);
|
|
|
|
driver->setPower(mode);
|
|
|
|
break;
|
2022-03-31 23:19:13 +02:00
|
|
|
case TRACK_MODE_OFF:
|
|
|
|
break;
|
|
|
|
}
|
2022-02-23 16:44:34 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-28 10:32:26 +01:00
|
|
|
|
|
|
|
POWERMODE TrackManager::getProgPower() {
|
|
|
|
FOR_EACH_TRACK(t)
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_PROG)
|
|
|
|
return track[t]->getPower();
|
2022-02-28 10:32:26 +01:00
|
|
|
return POWERMODE::OFF;
|
2022-02-23 16:44:34 +01:00
|
|
|
}
|
2023-03-02 13:56:30 +01:00
|
|
|
|
|
|
|
void TrackManager::reportObsoleteCurrent(Print* stream) {
|
|
|
|
// This function is for backward JMRI compatibility only
|
|
|
|
// It reports the first track only, as main, regardless of track settings.
|
|
|
|
// <c MeterName value C/V unit min max res warn>
|
|
|
|
int maxCurrent=track[0]->raw2mA(track[0]->getRawCurrentTripValue());
|
|
|
|
StringFormatter::send(stream, F("<c CurrentMAIN %d C Milli 0 %d 1 %d>\n"),
|
|
|
|
track[0]->raw2mA(track[0]->getCurrentRaw(false)), maxCurrent, maxCurrent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackManager::reportCurrent(Print* stream) {
|
|
|
|
StringFormatter::send(stream,F("<jI"));
|
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
StringFormatter::send(stream, F(" %d"),
|
|
|
|
(track[t]->getPower()==POWERMODE::OVERLOAD) ? -1 :
|
|
|
|
track[t]->raw2mA(track[t]->getCurrentRaw(false)));
|
|
|
|
}
|
|
|
|
StringFormatter::send(stream,F(">\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackManager::reportGauges(Print* stream) {
|
|
|
|
StringFormatter::send(stream,F("<jG"));
|
|
|
|
FOR_EACH_TRACK(t) {
|
|
|
|
StringFormatter::send(stream, F(" %d"),
|
|
|
|
track[t]->raw2mA(track[t]->getRawCurrentTripValue()));
|
|
|
|
}
|
|
|
|
StringFormatter::send(stream,F(">\n"));
|
|
|
|
}
|
|
|
|
|
2022-03-19 12:22:31 +01:00
|
|
|
void TrackManager::setJoinRelayPin(byte joinRelayPin) {
|
|
|
|
joinRelay=joinRelayPin;
|
|
|
|
if (joinRelay!=UNUSED_PIN) {
|
|
|
|
pinMode(joinRelay,OUTPUT);
|
|
|
|
digitalWrite(joinRelay,LOW); // LOW is relay disengaged
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackManager::setJoin(bool joined) {
|
2022-08-17 02:11:51 +02:00
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
if (joined) {
|
|
|
|
FOR_EACH_TRACK(t) {
|
2023-07-17 02:26:29 +02:00
|
|
|
if (track[t]->getMode()==TRACK_MODE_PROG) {
|
2022-08-17 02:11:51 +02:00
|
|
|
tempProgTrack = t;
|
|
|
|
setTrackMode(t, TRACK_MODE_MAIN);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (tempProgTrack != MAX_TRACKS+1) {
|
|
|
|
setTrackMode(tempProgTrack, TRACK_MODE_PROG);
|
|
|
|
tempProgTrack = MAX_TRACKS+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2022-03-19 12:22:31 +01:00
|
|
|
progTrackSyncMain=joined;
|
|
|
|
if (joinRelay!=UNUSED_PIN) digitalWrite(joinRelay,joined?HIGH:LOW);
|
|
|
|
}
|