mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-12-24 21:21:24 +01:00
send milliAmps and meter setup for new JMRI Meter function
This commit is contained in:
parent
da31e9cbc5
commit
f1116ffba4
@ -63,13 +63,13 @@ class DCCWaveform {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
inline int getCurrentmA() {
|
inline int getCurrentmA() {
|
||||||
if (powerMode == POWERMODE::ON)
|
if (powerMode == POWERMODE::ON)
|
||||||
return motorDriver->raw2mA(lastCurrent);
|
return motorDriver->raw2mA(lastCurrent);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
inline int getMaxmA() {
|
inline int getMaxmA() {
|
||||||
if (maxmA == 0) { //only calculate this for first request, it doesn't change
|
if (maxmA == 0) { //only calculate this for first request, it doesn't change
|
||||||
maxmA = motorDriver->raw2mA(motorDriver->getRawCurrentTripValue());
|
maxmA = motorDriver->raw2mA(motorDriver->getRawCurrentTripValue());
|
||||||
}
|
}
|
||||||
return maxmA;
|
return maxmA;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user