From 8a69403ddaca955c388997ff332b8a821890c13f Mon Sep 17 00:00:00 2001 From: Harald Barth Date: Sat, 3 Jun 2023 22:01:14 +0200 Subject: [PATCH] devel release version 4.2.54 --- GITHUB_SHA.h | 2 +- config.example.h | 16 +++++++++++++--- version.h | 5 +++-- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/GITHUB_SHA.h b/GITHUB_SHA.h index 6716cc9..7ef8904 100644 --- a/GITHUB_SHA.h +++ b/GITHUB_SHA.h @@ -1 +1 @@ -#define GITHUB_SHA "devel-202305290743Z" +#define GITHUB_SHA "devel-202306031954Z" diff --git a/config.example.h b/config.example.h index ec4c210..16402b6 100644 --- a/config.example.h +++ b/config.example.h @@ -1,7 +1,7 @@ /* * © 2022 Paul M. Antoine * © 2021 Neil McKechnie - * © 2020-2021 Harald Barth + * © 2020-2023 Harald Barth * © 2020-2021 Fred Decker * © 2020-2021 Chris Harlow * @@ -27,6 +27,16 @@ The configuration file for DCC-EX Command Station **********************************************************************/ +///////////////////////////////////////////////////////////////////////////////////// +// If you want to add your own motor driver definition(s), add them here +// For example MY_SHIELD with display name "MINE": +// (remove comment start and end marker if you want to edit and use that) +/* +#define MY_SHIELD F("MINE"), \ + new MotorDriver( 3, 12, UNUSED_PIN, 9, A0, 5.08, 3000, A4), \ + new MotorDriver(11, 13, UNUSED_PIN, 8, A1, 5.08, 1500, A5) +*/ + ///////////////////////////////////////////////////////////////////////////////////// // NOTE: Before connecting these boards and selecting one in this software // check the quick install guides!!! Some of these boards require a voltage @@ -34,15 +44,15 @@ The configuration file for DCC-EX Command Station // the correct resistor could damage the sense pin on your Arduino or destroy // the device. // -// DEFINE MOTOR_SHIELD_TYPE BELOW ACCORDING TO THE FOLLOWING TABLE: +// DEFINE MOTOR_SHIELD_TYPE BELOW. THESE ARE EXAMPLES. FULL LIST IN MotorDrivers.h // // STANDARD_MOTOR_SHIELD : Arduino Motor shield Rev3 based on the L298 with 18V 2A per channel // POLOLU_MOTOR_SHIELD : Pololu MC33926 Motor Driver (not recommended for prog track) -// POLOLU_TB9051FTG : Pololu Dual TB9051FTG Motor Driver // FUNDUMOTO_SHIELD : Fundumoto Shield, no current sensing (not recommended, no short protection) // FIREBOX_MK1 : The Firebox MK1 // FIREBOX_MK1S : The Firebox MK1S // IBT_2_WITH_ARDUINO : Arduino Motor Shield for PROG and IBT-2 for MAIN +// EX8874_SHIELD : DCC-EX TI DRV8874 based motor shield // | // +-----------------------v // diff --git a/version.h b/version.h index ce3d3de..c3d47d9 100644 --- a/version.h +++ b/version.h @@ -4,8 +4,9 @@ #include "StringFormatter.h" -#define VERSION "4.2.54pre5" -// 4.2.54 - Fix: Better warnings for pin number errors +#define VERSION "4.2.54" +// 4.2.54 - EX8874 shield in config.example.h +// - Fix: Better warnings for pin number errors // - Fix: Default roster list possible in Withrottle and // - Fix: Pin handling supports pins up to 254 // 4.2.53 - Fix: Fault pin handling made more straight forward