Skip to content

Commit

Permalink
Change from TrackManager::returnMode to TrackManager::getMode
Browse files Browse the repository at this point in the history
  • Loading branch information
habazut committed Nov 27, 2023
1 parent 96fdbfd commit 1f05ef4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion GITHUB_SHA.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define GITHUB_SHA "devel-202311232114Z"
#define GITHUB_SHA "devel-202311270714Z"
2 changes: 1 addition & 1 deletion TrackManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ bool TrackManager::isProg(byte t) {
return false;
}

byte TrackManager::returnMode(byte t) {
TRACK_MODE TrackManager::getMode(byte t) {
return (track[t]->getMode());
}

Expand Down
2 changes: 1 addition & 1 deletion TrackManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class TrackManager {
static void streamTrackState(Print* stream, byte t);
static bool isPowerOn(byte t);
static bool isProg(byte t);
static byte returnMode(byte t);
static TRACK_MODE getMode(byte t);
static int16_t returnDCAddr(byte t);
static const FSH* getModeName(TRACK_MODE Mode);

Expand Down
3 changes: 2 additions & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

#include "StringFormatter.h"

#define VERSION "5.2.10"
#define VERSION "5.2.11"
// 5.2.11 - Change from TrackManager::returnMode to TrackManager::getMode
// 5.2.10 - Include trainbrains.eu block unoccupancy driver
// - include IO_PCA9555
// 5.2.9 - Bugfix LCD startup with no LCD, uses <@
Expand Down

0 comments on commit 1f05ef4

Please sign in to comment.