simx00x 0.1.0

A no-std and no-alloc driver for SIM800L GSM modules (and probably similar modules)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]
#![no_std]

mod at_commands;
mod buffer;
mod call_state;
mod config;

mod errors;
mod log;
mod sim800l;
mod state_machine;

pub use config::Config;
pub use errors::SimError;
pub use sim800l::SimX00X;