monarch2 0.1.0-beta.1

A driver crate for the Sequans Monarch 2 Platform chips.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use atat::atat_derive::AtatResp;

use super::types::NetworkRegistrationState;

// 7.14 Network registration status +CEREG
#[derive(Debug, Clone, AtatResp)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct NetworkRegistrationStatus {
    #[at_arg(position = 0)]
    pub stat: NetworkRegistrationState,
}