reversed a change to the state parameter of the notifyDccAccState() call-back that may have broken compatibility with existing code
more improvements to the NmraDccAccessoryDecoder_Pulsed_8 example code
This commit is contained in:
@@ -690,7 +690,7 @@ void execDccProcessor( DCC_MSG * pDccMsg )
|
||||
uint8_t outputPower = (pDccMsg->Data[1] & 0b00001000) >> 3;
|
||||
|
||||
if( notifyDccAccState )
|
||||
notifyDccAccState( Address, BoardAddress, OutputAddress, outputPower ) ;
|
||||
notifyDccAccState( Address, BoardAddress, OutputAddress, pDccMsg->Data[1] & 0b00001000 ) ;
|
||||
|
||||
if( notifyDccAccTurnoutBoard )
|
||||
notifyDccAccTurnoutBoard( BoardAddress, OutputIndex, direction, outputPower );
|
||||
|
@@ -11,8 +11,17 @@
|
||||
// You can also print other Debug Messages uncommenting the line below
|
||||
#define DEBUG_MSG
|
||||
|
||||
NmraDcc Dcc ;
|
||||
DCC_MSG Packet ;
|
||||
// Un-Comment the line below to force CVs to be written to the Factory Default values
|
||||
// defined in the FactoryDefaultCVs below on Start-Up
|
||||
#define FORCE_RESET_FACTORY_DEFAULT_CV
|
||||
|
||||
// Un-Comment the line below to Enable DCC ACK for Service Mode Programming Read CV Capablilty
|
||||
//#define ENABLE_DCC_ACK 15 // This is A1 on the Iowa Scaled Engineering ARD-DCCSHIELD DCC Shield
|
||||
|
||||
#define NUM_TURNOUTS 8 // Set Number of Turnouts (Pairs of Pins)
|
||||
#define ACTIVE_OUTPUT_STATE LOW // Set the ACTIVE State of the output to Drive the Turnout motor electronics HIGH or LOW
|
||||
|
||||
#define DCC_DECODER_VERSION_NUM 11 // Set the Decoder Version - Used by JMRI to Identify the decoder
|
||||
|
||||
struct CVPair
|
||||
{
|
||||
@@ -24,36 +33,33 @@ struct CVPair
|
||||
#define CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME 3 // CV for the delay in ms to allow a CDU to recharge
|
||||
#define CV_ACCESSORY_DECODER_ACTIVE_STATE 4 // CV to define the ON Output State
|
||||
|
||||
#define NUM_TURNOUTS 8 // Number of Turnouts
|
||||
// To set the Turnout Addresses for this board you need to change the CV values for CV1 (CV_ACCESSORY_DECODER_ADDRESS_LSB) and
|
||||
// CV9 (CV_ACCESSORY_DECODER_ADDRESS_MSB) in the FactoryDefaultCVs structure below. The Turnout Addresses are defined as:
|
||||
// Base Turnout Address is: ((((CV9 * 64) + CV1) - 1) * 4) + 1
|
||||
// With NUM_TURNOUTS 8 (above) a CV1 = 1 and CV9 = 0, the Turnout Addresses will be 1..8, for CV1 = 2 the Turnout Address is 5..12
|
||||
|
||||
CVPair FactoryDefaultCVs [] =
|
||||
{
|
||||
{CV_ACCESSORY_DECODER_ADDRESS_LSB, 1},
|
||||
{CV_ACCESSORY_DECODER_ADDRESS_MSB, 0},
|
||||
{CV_ACCESSORY_DECODER_ADDRESS_LSB, 1}, // CV 1 Board Address (lower 6 bits)
|
||||
{CV_ACCESSORY_DECODER_ADDRESS_MSB, 0}, // CV 9 Board Address (Upper 3 bits)
|
||||
{CV_ACCESSORY_DECODER_OUTPUT_PULSE_TIME, 50}, // x 10mS for the output pulse duration
|
||||
{CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME, 30}, // x 10mS for the CDU recharge delay time
|
||||
{CV_ACCESSORY_DECODER_ACTIVE_STATE, HIGH},
|
||||
{CV_ACCESSORY_DECODER_ACTIVE_STATE, ACTIVE_OUTPUT_STATE},
|
||||
};
|
||||
|
||||
uint8_t FactoryDefaultCVIndex = 0;
|
||||
|
||||
// Un-Comment the line below to force CVs to be written to the Factory Default values defined above
|
||||
//FactoryDefaultCVIndex = sizeof(FactoryDefaultCVs);
|
||||
|
||||
// This is the Arduino Pin Mapping to Turnout Addresses with 2 pins per turnout
|
||||
// base address 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
||||
byte outputs[] = { 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19};
|
||||
// pins D3 D4 D5 D6 D7 D8 D9 D10 D11 D12 D13 A0 A1 A2 A4 A5
|
||||
// A1 is missing in the sequence as it is used for the DCC ACK
|
||||
// The Pins are defined in Pairs T=Thrown, C=Closed (Digitrax Notation)
|
||||
// base address 1T 1C 2T 2C 3T 3C 4T 4C 5T 5C 6T 6C 7T 7C 8T 8C
|
||||
byte outputs[] = { 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19};
|
||||
// pins D3 D4 D5 D6 D7 D8 D9 D10 D11 D12 D13 A0 A2 A3 A4 A5
|
||||
|
||||
NmraDcc Dcc ;
|
||||
DCC_MSG Packet ;
|
||||
PinPulser pinPulser;
|
||||
|
||||
// To enable DCC CV Read capability with a DCC Service Mode CV Programmer un-comment the line below
|
||||
//#define ENABLE_DCC_ACK
|
||||
#ifdef ENABLE_DCC_ACK
|
||||
const int DccAckPin = 3 ;
|
||||
#endif
|
||||
|
||||
uint16_t BaseTurnoutAddress; //
|
||||
uint16_t BaseTurnoutAddress;
|
||||
|
||||
// This function is called whenever a normal DCC Turnout Packet is received
|
||||
void notifyDccAccTurnoutOutput( uint16_t Addr, uint8_t Direction, uint8_t OutputPower )
|
||||
@@ -82,40 +88,53 @@ void notifyDccAccTurnoutOutput( uint16_t Addr, uint8_t Direction, uint8_t Output
|
||||
#endif
|
||||
}
|
||||
|
||||
void initPinPulser(void)
|
||||
{
|
||||
BaseTurnoutAddress = (((Dcc.getCV(CV_ACCESSORY_DECODER_ADDRESS_MSB) * 64) + Dcc.getCV(CV_ACCESSORY_DECODER_ADDRESS_LSB) - 1) * 4) + 1 ;
|
||||
|
||||
uint16_t onMs = Dcc.getCV(CV_ACCESSORY_DECODER_OUTPUT_PULSE_TIME) * 10;
|
||||
uint16_t cduRechargeMs = Dcc.getCV(CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME) * 10;
|
||||
uint8_t activeOutputState = Dcc.getCV(CV_ACCESSORY_DECODER_ACTIVE_STATE);
|
||||
|
||||
#ifdef DEBUG_MSG
|
||||
Serial.print("initPinPulser: DCC Turnout Base Address: "); Serial.print(BaseTurnoutAddress, DEC);
|
||||
Serial.print(" Active Pulse: "); Serial.print(onMs);
|
||||
Serial.print("ms CDU Recharge: "); Serial.print(cduRechargeMs);
|
||||
Serial.print("ms Active Output State: "); Serial.println(activeOutputState ? "HIGH" : "LOW" );
|
||||
#endif
|
||||
|
||||
// Step through all the Turnout Driver pins setting them to OUTPUT and NOT Active State
|
||||
for(uint8_t i = 0; i < (NUM_TURNOUTS * 2); i++)
|
||||
{
|
||||
digitalWrite(outputs[i], !activeOutputState); // Set the Output Inactive before the direction so the
|
||||
pinMode( outputs[i], OUTPUT ); // Pin doesn't momentarily pulse the wrong state
|
||||
}
|
||||
|
||||
// Init the PinPulser with the new settings
|
||||
pinPulser.init(onMs, cduRechargeMs, activeOutputState);
|
||||
}
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
|
||||
// Configure the DCC CV Programing ACK pin for an output
|
||||
#ifdef ENABLE_DCC_ACK
|
||||
pinMode( DccAckPin, OUTPUT );
|
||||
#endif
|
||||
|
||||
// Setup which External Interrupt, the Pin it's associated with that we're using and enable the Pull-Up
|
||||
Dcc.pin(0, 2, 1);
|
||||
|
||||
// Call the main DCC Init function to enable the DCC Receiver
|
||||
Dcc.init( MAN_ID_DIY, 10, CV29_ACCESSORY_DECODER | CV29_OUTPUT_ADDRESS_MODE, 0 );
|
||||
|
||||
BaseTurnoutAddress = (Dcc.getCV(CV_ACCESSORY_DECODER_ADDRESS_MSB) * 4) + Dcc.getCV(CV_ACCESSORY_DECODER_ADDRESS_LSB) ;
|
||||
#ifdef DEBUG_MSG
|
||||
Serial.println("NMRA DCC 8-Turnout Accessory Decoder");
|
||||
Serial.print("DCC Turnout Base Address: ");
|
||||
Serial.println(BaseTurnoutAddress, DEC);
|
||||
#endif
|
||||
|
||||
for(uint8_t i = 0; i < (NUM_TURNOUTS * 2); i++)
|
||||
pinMode( outputs[i], OUTPUT );
|
||||
|
||||
uint16_t onMs = Dcc.getCV(CV_ACCESSORY_DECODER_OUTPUT_PULSE_TIME) * 10;
|
||||
uint16_t cduRechargeMs = Dcc.getCV(CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME) * 10;
|
||||
uint8_t activeOutputState = Dcc.getCV(CV_ACCESSORY_DECODER_ACTIVE_STATE);
|
||||
|
||||
pinPulser.init(onMs, cduRechargeMs, activeOutputState);
|
||||
Dcc.init( MAN_ID_DIY, DCC_DECODER_VERSION_NUM, CV29_ACCESSORY_DECODER, 0 );
|
||||
|
||||
#ifdef DEBUG_MSG
|
||||
Serial.println("Init Done");
|
||||
Serial.print("\nNMRA DCC 8-Turnout Accessory Decoder. Ver: "); Serial.println(DCC_DECODER_VERSION_NUM,DEC);
|
||||
#endif
|
||||
|
||||
#ifdef FORCE_RESET_FACTORY_DEFAULT_CV
|
||||
Serial.println("Resetting CVs to Factory Defaults");
|
||||
notifyCVResetFactoryDefault();
|
||||
#endif
|
||||
|
||||
if( FactoryDefaultCVIndex == 0) // Not forcing a reset CV Reset to Factory Defaults so initPinPulser
|
||||
initPinPulser();
|
||||
}
|
||||
|
||||
void loop()
|
||||
@@ -127,8 +146,16 @@ void loop()
|
||||
|
||||
if( FactoryDefaultCVIndex && Dcc.isSetCVReady())
|
||||
{
|
||||
FactoryDefaultCVIndex--; // Decrement first as initially it is the size of the array
|
||||
Dcc.setCV( FactoryDefaultCVs[FactoryDefaultCVIndex].CV, FactoryDefaultCVs[FactoryDefaultCVIndex].Value);
|
||||
FactoryDefaultCVIndex--; // Decrement first as initially it is the size of the array
|
||||
uint16_t cv = FactoryDefaultCVs[FactoryDefaultCVIndex].CV;
|
||||
uint8_t val = FactoryDefaultCVs[FactoryDefaultCVIndex].Value;
|
||||
#ifdef DEBUG_MSG
|
||||
Serial.print("loop: Write Default CV: "); Serial.print(cv,DEC); Serial.print(" Value: "); Serial.println(val,DEC);
|
||||
#endif
|
||||
Dcc.setCV( cv, val );
|
||||
|
||||
if( FactoryDefaultCVIndex == 0) // Is this the last Default CV to set? if so re-initPinPulser
|
||||
initPinPulser();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -142,20 +169,10 @@ void notifyCVChange(uint16_t CV, uint8_t Value)
|
||||
#endif
|
||||
|
||||
Value = Value; // Silence Compiler Warnings...
|
||||
if((CV == CV_ACCESSORY_DECODER_ADDRESS_MSB) || (CV == CV_ACCESSORY_DECODER_ADDRESS_LSB))
|
||||
{
|
||||
BaseTurnoutAddress = (Dcc.getCV(CV_ACCESSORY_DECODER_ADDRESS_MSB) * 4) + Dcc.getCV(CV_ACCESSORY_DECODER_ADDRESS_LSB) ;
|
||||
return;
|
||||
}
|
||||
|
||||
if((CV == CV_ACCESSORY_DECODER_OUTPUT_PULSE_TIME) || (CV == CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME) || (CV == CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME))
|
||||
{
|
||||
uint16_t onMs = Dcc.getCV(CV_ACCESSORY_DECODER_OUTPUT_PULSE_TIME) * 10;
|
||||
uint16_t cduRechargeMs = Dcc.getCV(CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME) * 10;
|
||||
uint8_t activeOutputState = Dcc.getCV(CV_ACCESSORY_DECODER_ACTIVE_STATE);
|
||||
|
||||
pinPulser.init(onMs, cduRechargeMs, activeOutputState);
|
||||
}
|
||||
if((CV == CV_ACCESSORY_DECODER_ADDRESS_MSB) || (CV == CV_ACCESSORY_DECODER_ADDRESS_LSB) ||
|
||||
(CV == CV_ACCESSORY_DECODER_OUTPUT_PULSE_TIME) || (CV == CV_ACCESSORY_DECODER_CDU_RECHARGE_TIME) || (CV == CV_ACCESSORY_DECODER_ACTIVE_STATE))
|
||||
initPinPulser(); // Some CV we care about changed so re-init the PinPulser with the new CV settings
|
||||
}
|
||||
|
||||
void notifyCVResetFactoryDefault()
|
||||
@@ -173,10 +190,13 @@ void notifyCVAck(void)
|
||||
#ifdef DEBUG_MSG
|
||||
Serial.println("notifyCVAck") ;
|
||||
#endif
|
||||
|
||||
digitalWrite( DccAckPin, HIGH );
|
||||
delay( 6 );
|
||||
digitalWrite( DccAckPin, LOW );
|
||||
// Configure the DCC CV Programing ACK pin for an output
|
||||
pinMode( ENABLE_DCC_ACK, OUTPUT );
|
||||
|
||||
// Generate the DCC ACK 60mA pulse
|
||||
digitalWrite( ENABLE_DCC_ACK, HIGH );
|
||||
delay( 10 ); // The DCC Spec says 6ms but 10 makes sure... ;)
|
||||
digitalWrite( ENABLE_DCC_ACK, LOW );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user