mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2025-02-19 23:46:02 +01:00
Compare commits
5 Commits
d0ab8f82c8
...
a324752046
Author | SHA1 | Date | |
---|---|---|---|
|
a324752046 | ||
|
5d411e6a08 | ||
|
7bd1bae470 | ||
|
7cc3cf9c65 | ||
|
91e60b3716 |
@ -810,7 +810,8 @@ void DCCEXParser::parseOne(Print *stream, byte *com, RingStream * ringStream)
|
|||||||
StringFormatter::send(stream,
|
StringFormatter::send(stream,
|
||||||
F("<@ 0 0 \"DCC-EX v" VERSION "\">\n"
|
F("<@ 0 0 \"DCC-EX v" VERSION "\">\n"
|
||||||
"<@ 0 1 \"Lic GPLv3 \">\n"
|
"<@ 0 1 \"Lic GPLv3 \">\n"
|
||||||
"<@ 0 8 \"Powered by DCC-EX \">\n"));
|
"<@ 0 8 \"Powered by DCC-EX \">\n"
|
||||||
|
CommandDistributor::setVirtualLCDSerial(NULL);
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
default: //anything else will diagnose and drop out to <X>
|
default: //anything else will diagnose and drop out to <X>
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* © 2023, Neil McKechnie. All rights reserved.
|
* © 2024, Paul Antoine
|
||||||
|
* © 2023, Neil McKechnie
|
||||||
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This file is part of DCC++EX API
|
* This file is part of DCC-EX API
|
||||||
*
|
*
|
||||||
* This is free software: you can redistribute it and/or modify
|
* This is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -112,13 +114,14 @@ protected:
|
|||||||
// Fill buffer with spaces
|
// Fill buffer with spaces
|
||||||
memset(_buffer, ' ', _numCols*_numRows);
|
memset(_buffer, ' ', _numCols*_numRows);
|
||||||
|
|
||||||
_displayDriver->clearNative();
|
|
||||||
|
|
||||||
// Add device to list of HAL devices (not necessary but allows
|
// Add device to list of HAL devices (not necessary but allows
|
||||||
// status to be displayed using <D HAL SHOW> and device to be
|
// status to be displayed using <D HAL SHOW> and device to be
|
||||||
// reinitialised using <D HAL RESET>).
|
// reinitialised using <D HAL RESET>).
|
||||||
IODevice::addDevice(this);
|
IODevice::addDevice(this);
|
||||||
|
|
||||||
|
// Moved after addDevice() to ensure I2CManager.begin() has been called fisrt
|
||||||
|
_displayDriver->clearNative();
|
||||||
|
|
||||||
// Also add this display to list of display handlers
|
// Also add this display to list of display handlers
|
||||||
DisplayInterface::addDisplay(displayNo);
|
DisplayInterface::addDisplay(displayNo);
|
||||||
|
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.2.47"
|
#define VERSION "5.2.48"
|
||||||
|
// 5.2.48 - Bugfix: HALDisplay was generating I2C traffic prior to I2C being initialised
|
||||||
// 5.2.47 - EXRAIL additions:
|
// 5.2.47 - EXRAIL additions:
|
||||||
// STEALTH_GLOBAL
|
// STEALTH_GLOBAL
|
||||||
// BLINK
|
// BLINK
|
||||||
|
Loading…
Reference in New Issue
Block a user