mirror of
https://github.com/opentx/opentx.git
synced 2025-07-19 14:25:11 +03:00
Re #3043: Air speed unit typo corrected in parser
This commit is contained in:
parent
f875aec72b
commit
d5824f5719
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ def ParseSWR(packet, dataId, prim, appId, data, crc):
|
||||||
|
|
||||||
def ParseAirSpeed(packet, dataId, prim, appId, data, crc):
|
def ParseAirSpeed(packet, dataId, prim, appId, data, crc):
|
||||||
print "packet: %s (%4d)" % (dump(packet), lineNumber) ,
|
print "packet: %s (%4d)" % (dump(packet), lineNumber) ,
|
||||||
print " Aspd: %.1f m/s" % (data/10.0)
|
print " Aspd: %.1f km/h" % (data/10.0)
|
||||||
|
|
||||||
appIdParsers = (
|
appIdParsers = (
|
||||||
(0x0300, 0x030f, ParseFlVSS),
|
(0x0300, 0x030f, ParseFlVSS),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue