max7800x_hal/
lib.rs

1//! # Hardware Abstraction Layer for MAX7800x Microcontrollers
2#![no_std]
3
4/// Entry point for the runtime application.
5pub use cortex_m_rt::entry;
6/// Re-export of the Peripheral Access Crate (PAC) for the MAX78000.
7pub use max78000_pac as pac;
8pub use pac::Interrupt;
9
10mod private {
11    pub trait Sealed {}
12}
13use private::Sealed;
14
15pub mod flc;
16pub mod gcr;
17pub mod gpio;
18pub mod icc;
19pub mod trng;
20pub mod uart;