Ardupilot2/Tools/LogAnalyzer/VehicleType.py
Luiz Georg d76f3d71ae Tools/LogAnalyzer: pass flake8
`TestDualGyroDrift.py` ignored because it is mostly commented out code
2022-07-19 22:01:31 +10:00

13 lines
278 B
Python

# AP_FLAKE8_CLEAN
class VehicleType:
Plane = 17
Copter = 23
Rover = 37
# these should really be "Plane", "Copter" and "Rover", but many
# things use these values as triggers in their code:
VehicleTypeString = {17: "ArduPlane", 23: "ArduCopter", 37: "ArduRover"}