rp-hal 0.0.2

HAL and peripheral access API for microcontroller family containing RP2040
Documentation
1
2
3
4
5
6
7
8
#![no_std]

pub extern crate embedded_hal as hal;

#[cfg(feature = "2040")]
pub use rp2040 as target_device;

pub mod rom_data;