//! Crate providing some tools to create better device drivers more easily
//!
//! The best source to see how it works is the examples folder.
#![cfg_attr(not(test), no_std)]
// #![forbid(missing_docs)]
#![allow(async_fn_in_trait)]
pub use bit::Bit;
pub use bitvec;
// #[macro_use]
// pub mod hl;
/// The module with tools for creating the low-level parts of the device driver
#[macro_use]
pub mod ll;
pub mod utils;
mod bit;