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

ACK defaults now 50-2000-20000

This commit is contained in:
Ash-4 2022-04-29 19:24:56 -05:00 committed by GitHub
parent cd0b8790b6
commit 43bac3f78e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,8 +27,8 @@
#include "DCCWaveform.h" #include "DCCWaveform.h"
#include "TrackManager.h" #include "TrackManager.h"
unsigned int DCCACK::minAckPulseDuration = 4000; // micros unsigned int DCCACK::minAckPulseDuration = 2000; // micros
unsigned int DCCACK::maxAckPulseDuration = 8500; // micros unsigned int DCCACK::maxAckPulseDuration = 20000; // micros
MotorDriver * DCCACK::progDriver=NULL; MotorDriver * DCCACK::progDriver=NULL;
ackOp const * DCCACK::ackManagerProg; ackOp const * DCCACK::ackManagerProg;
@ -57,7 +57,7 @@ uint8_t DCCACK::trailingEdgeCounter=0;
volatile bool DCCACK::ackPending; volatile bool DCCACK::ackPending;
bool DCCACK::autoPowerOff; bool DCCACK::autoPowerOff;
int DCCACK::ackThreshold; int DCCACK::ackThreshold;
int DCCACK::ackLimitmA; int DCCACK::ackLimitmA = 50;
int DCCACK::ackMaxCurrent; int DCCACK::ackMaxCurrent;
unsigned int DCCACK::ackCheckDuration; // millis unsigned int DCCACK::ackCheckDuration; // millis