mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 08:36:14 +01:00
Compare commits
4 Commits
31508b641d
...
fde0a6a974
Author | SHA1 | Date | |
---|---|---|---|
|
fde0a6a974 | ||
|
b472230b47 | ||
|
6da3153dd5 | ||
|
2afb5f3d6c |
|
@ -37,7 +37,9 @@
|
||||||
class Display : public DisplayInterface {
|
class Display : public DisplayInterface {
|
||||||
public:
|
public:
|
||||||
Display(DisplayDevice *deviceDriver);
|
Display(DisplayDevice *deviceDriver);
|
||||||
|
#if !defined (MAX_CHARACTER_ROWS)
|
||||||
static const int MAX_CHARACTER_ROWS = 8;
|
static const int MAX_CHARACTER_ROWS = 8;
|
||||||
|
#endif
|
||||||
static const int MAX_CHARACTER_COLS = MAX_MSG_SIZE;
|
static const int MAX_CHARACTER_COLS = MAX_MSG_SIZE;
|
||||||
static const long DISPLAY_SCROLL_TIME = 3000; // 3 seconds
|
static const long DISPLAY_SCROLL_TIME = 3000; // 3 seconds
|
||||||
|
|
||||||
|
|
|
@ -167,6 +167,14 @@ The configuration file for DCC-EX Command Station
|
||||||
// * #define SCROLLMODE 2 is by row (move up 1 row at a time).
|
// * #define SCROLLMODE 2 is by row (move up 1 row at a time).
|
||||||
#define SCROLLMODE 1
|
#define SCROLLMODE 1
|
||||||
|
|
||||||
|
// In order to avoid wasting memory the current scroll buffer is limited
|
||||||
|
// to 8 lines. Some users wishing to display additional information
|
||||||
|
// such as TrackManager power states have requested additional rows aware
|
||||||
|
// of the warning that this will take extra RAM. if you wish to include additional rows
|
||||||
|
// uncomment the following #define and set the number of lines you need.
|
||||||
|
//#define MAX_CHARACTER_ROWS 12
|
||||||
|
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////
|
||||||
// DISABLE EEPROM
|
// DISABLE EEPROM
|
||||||
//
|
//
|
||||||
|
|
16
version.h
16
version.h
|
@ -3,7 +3,8 @@
|
||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.2.1"
|
#define VERSION "5.2.2"
|
||||||
|
// 5.2.2 - Added option to allow MAX_CHARACTER_ROWS to be defined in config.h
|
||||||
// 5.2.1 - Trackmanager rework for simpler structure
|
// 5.2.1 - Trackmanager rework for simpler structure
|
||||||
// 5.2.0 - ESP32: Autoreverse and booster mode support
|
// 5.2.0 - ESP32: Autoreverse and booster mode support
|
||||||
// 5.1.21 - EXRAIL invoke multiple ON handlers for same event
|
// 5.1.21 - EXRAIL invoke multiple ON handlers for same event
|
||||||
|
@ -182,9 +183,18 @@
|
||||||
// TrackManager DCC & DC up to 8 Districts Architecture
|
// TrackManager DCC & DC up to 8 Districts Architecture
|
||||||
// Automatic ALIAS(name)
|
// Automatic ALIAS(name)
|
||||||
// Command Parser now accepts Underscore in Alias Names
|
// Command Parser now accepts Underscore in Alias Names
|
||||||
|
// 4.1.6 Support for new EX-MotorShield8874 Dual 5Amp Shield
|
||||||
|
// 4.1.5 Bugfix LCN number parsing
|
||||||
|
// 4.1.4 Bugfix for issue #299 Turnout Description NULL
|
||||||
|
// 4.1.3 Bugfix: Ethernet init order
|
||||||
|
// 4.1.2 Bugfix: Ethernet shield W5100 does not report HW or link level
|
||||||
// 4.1.1 Bugfix: preserve turnout format
|
// 4.1.1 Bugfix: preserve turnout format
|
||||||
// Bugfix: parse multiple commands in one buffer string correct
|
// Bugfix: parse multiple commands in one buffer string correctly (ex: <s><Q>)
|
||||||
// Bugfix: </> command signal status in Exrail
|
// Bugfix: </> command signal status of EX-RAIL tasks or threads
|
||||||
|
// Bugfix: EX-RAIL read long loco address
|
||||||
|
// Bugfix: Add space character after version string 4.1.1 for JMRI parsing.
|
||||||
|
// Improved display and loop time for signals make service start to be outside the DONT_TOUCH_WIFI_CONF area
|
||||||
|
// Improve WiFi startup by making service start to be outside the DONT_TOUCH_WIFI_CONF area
|
||||||
// 4.1.0 ...
|
// 4.1.0 ...
|
||||||
//
|
//
|
||||||
// 4.0.2 EXRAIL additions:
|
// 4.0.2 EXRAIL additions:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user