mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
Cleaned up warning
This commit is contained in:
parent
f8b054cf6a
commit
89664eff9d
|
@ -98,7 +98,8 @@ private:
|
||||||
|
|
||||||
void _write(VPIN vpin, int value) override {
|
void _write(VPIN vpin, int value) override {
|
||||||
if (vpin == _firstVpin + 1) {
|
if (vpin == _firstVpin + 1) {
|
||||||
byte _feedbackBuffer[2] = {RE_OP, value};
|
if (value != 0) value = 0x01;
|
||||||
|
byte _feedbackBuffer[2] = {RE_OP, (byte)value};
|
||||||
I2CManager.write(_I2CAddress, _feedbackBuffer, 2);
|
I2CManager.write(_I2CAddress, _feedbackBuffer, 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
|
|
||||||
#define VERSION "4.2.37"
|
#define VERSION "4.2.38"
|
||||||
|
// 4.2.38 - Clean up compiler warning when IO_RotaryEncoder.h included
|
||||||
// 4.2.37 - Add new FLAGS HAL device for communications to/from EX-RAIL;
|
// 4.2.37 - Add new FLAGS HAL device for communications to/from EX-RAIL;
|
||||||
// - Fix diag display of high VPINs within IODevice class.
|
// - Fix diag display of high VPINs within IODevice class.
|
||||||
// 4.2.36 - do not broadcast a turnout state that has not changed
|
// 4.2.36 - do not broadcast a turnout state that has not changed
|
||||||
|
|
Loading…
Reference in New Issue
Block a user