pub type CellularStatus = CellularStatus;Expand description
Originally defined in common::messages::cellular_status.
Aliased Type§
pub struct CellularStatus {
pub status: CellularStatusFlag,
pub failure_reason: CellularNetworkFailedReason,
pub type_: CellularNetworkRadioType,
pub quality: u8,
pub mcc: u16,
pub mnc: u16,
pub lac: u16,
}Fields§
§status: CellularStatusFlagMAVLink field status.
Cellular modem status
failure_reason: CellularNetworkFailedReasonMAVLink field failure_reason.
Failure reason when status in in CELLULAR_STATUS_FLAG_FAILED
type_: CellularNetworkRadioTypeMAVLink field type.
Cellular network radio type: gsm, cdma, lte…
quality: u8MAVLink field quality.
Signal quality in percent. If unknown, set to UINT8_MAX
mcc: u16MAVLink field mcc.
Mobile country code. If unknown, set to UINT16_MAX
mnc: u16MAVLink field mnc.
Mobile network code. If unknown, set to UINT16_MAX
lac: u16MAVLink field lac.
Location area code. If unknown, set to 0