atat 0.18.0

AT Parser for serial based device crates
Documentation
pub mod general;
pub mod timer;

use atat::atat_derive::AtatUrc;

use atat::atat_derive::{AtatCmd, AtatResp};

#[derive(Clone, AtatResp)]
pub struct NoResponse;

#[derive(Clone, AtatCmd)]
#[at_cmd("", NoResponse, timeout_ms = 1000)]
pub struct AT;

#[derive(Clone, AtatUrc)]
pub enum Urc {
    #[at_urc("+UMWI")]
    MessageWaitingIndication(general::urc::MessageWaitingIndication),
}