IridiumSBD: Add iridiumsbd_status uorb message

This commit is contained in:
acfloria
2018-04-18 14:06:12 +02:00
committed by Daniel Agar
parent 84578748f4
commit d8cf012641
4 changed files with 117 additions and 0 deletions
+1
View File
@@ -62,6 +62,7 @@ set(msg_files
gps_inject_data.msg
home_position.msg
input_rc.msg
iridiumsbd_status.msg
irlock_report.msg
landing_target_innovations.msg
landing_target_pose.msg
+14
View File
@@ -0,0 +1,14 @@
uint64 last_heartbeat # timestamp of the last successful sbd session
uint16 tx_buf_write_index # current size of the tx buffer
uint16 rx_buf_read_index # the rx buffer is parsed up to that index
uint16 rx_buf_end_index # current size of the rx buffer
uint16 failed_sbd_sessions # number of failed sbd sessions
uint16 successful_sbd_sessions # number of successfull sbd sessions
uint16 num_tx_buf_reset # number of times the tx buffer was reset
uint8 signal_quality # current signal quality, 0 is no signal, 5 the best
uint8 state # current state of the driver, see the satcom_state of IridiumSBD.h for the definition
bool ring_pending # indicates if a ring call is pending
bool tx_buf_write_pending # indicates if a tx buffer write is pending
bool tx_session_pending # indicates if a tx session is pending
bool rx_read_pending # indicates if a rx read is pending
bool rx_session_pending # indicates if a rx session is pending