rp-hal-boards/rp2040-hal/src/lib.rs
2021-04-17 18:22:15 -05:00

28 lines
583 B
Rust

//! HAL for the RP2040 microcontroller
//!
//! This is an implementation of the [`embedded-hal`] traits for the RP2040 microcontroller
//! NOTE This HAL is still under active development. This API will remain volatile until 1.0.0
#![deny(missing_docs)]
#![deny(warnings)]
#![no_std]
extern crate cortex_m;
extern crate embedded_hal as hal;
extern crate nb;
pub extern crate rp2040_pac as pac;
pub mod adc;
pub mod gpio;
pub mod i2c;
pub mod prelude;
pub mod pwm;
pub mod rom_data;
pub mod rtc;
pub mod spi;
pub mod ssi;
pub mod timer;
pub mod uart;
pub mod usb;
pub mod watchdog;