2022-06-14 19:02:36 -03:00
|
|
|
uint64 timestamp # [us] time since system start
|
|
|
|
float32 lateral_touchdown_offset # [m] lateral touchdown position offset manually commanded during landing
|
2022-07-13 19:11:44 -03:00
|
|
|
bool flaring # true if the aircraft is flaring
|
2022-07-18 05:51:11 -03:00
|
|
|
|
|
|
|
# abort status is:
|
|
|
|
# 0 if not aborted
|
|
|
|
# >0 if aborted, with the singular abort criterion which triggered the landing abort enumerated by the following abort reasons
|
|
|
|
uint8 abort_status
|
2022-07-13 19:11:44 -03:00
|
|
|
|
|
|
|
# abort reasons
|
2022-07-18 05:51:11 -03:00
|
|
|
# after the manual operator abort, corresponds to individual bits of param FW_LND_ABORT
|
2022-07-28 05:25:13 -03:00
|
|
|
uint8 NOT_ABORTED = 0
|
|
|
|
uint8 ABORTED_BY_OPERATOR = 1
|
|
|
|
uint8 TERRAIN_NOT_FOUND = 2 # FW_LND_ABORT (1 << 0)
|
|
|
|
uint8 TERRAIN_TIMEOUT = 3 # FW_LND_ABORT (1 << 1)
|
|
|
|
uint8 UNKNOWN_ABORT_CRITERION = 4
|