1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-16 04:45:17 +03:00

Re #3043: Air speed unit typo corrected in parser

This commit is contained in:
Damjan Adamic 2015-11-13 00:19:08 +01:00
parent f875aec72b
commit d5824f5719

View file

@ -53,7 +53,7 @@ def ParseSWR(packet, dataId, prim, appId, data, crc):
def ParseAirSpeed(packet, dataId, prim, appId, data, crc):
print "packet: %s (%4d)" % (dump(packet), lineNumber) ,
print " Aspd: %.1f m/s" % (data/10.0)
print " Aspd: %.1f km/h" % (data/10.0)
appIdParsers = (
(0x0300, 0x030f, ParseFlVSS),