monarch2 0.1.0-beta.1

A driver crate for the Sequans Monarch 2 Platform chips.
Documentation
#![cfg_attr(not(test), no_std)]

//! # monarch2
//!
//! This crate supports chips from the Sequans [Monarch 2](https://sequans.com/products/monarch-2/)
//! LTE Platform family using AT commands based interface.
//! It can be used both on `no_std` and `std` platforms.

// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;

mod command;
mod error;
mod modem;

pub use command::*;
pub use error::*;
pub use modem::*;

pub mod prelude {
    pub use crate::command::*;
    pub use crate::error::*;
    pub use crate::modem::*;
}