max7800x-hal 0.7.1

A Hardware Abstraction Layer for the MAX7800X microcontroller family
Documentation
//! # Hardware Abstraction Layer for MAX7800x Microcontrollers
#![no_std]

/// Entry point for the runtime application.
pub use cortex_m_rt::entry;
/// Re-export of the Peripheral Access Crate (PAC) for the MAX78000.
pub use max78000_pac as pac;
pub use pac::Interrupt;

mod private {
    pub trait Sealed {}
}
use private::Sealed;

pub mod flc;
pub mod gcr;
pub mod gpio;
pub mod icc;
pub mod trng;
pub mod uart;