embassy/embassy-rp/src/lib.rs

118 lines
1.8 KiB
Rust
Raw Normal View History

2021-03-29 04:11:32 +02:00
#![no_std]
#![feature(generic_associated_types)]
#![feature(asm)]
#![feature(type_alias_impl_trait)]
#![feature(never_type)]
#![allow(incomplete_features)]
2021-03-29 04:11:32 +02:00
#[cfg(feature = "unstable-pac")]
2021-03-29 04:11:32 +02:00
pub use rp2040_pac2 as pac;
#[cfg(not(feature = "unstable-pac"))]
pub(crate) use rp2040_pac2 as pac;
2021-03-29 04:11:32 +02:00
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
pub mod interrupt;
2021-07-12 02:45:42 +02:00
pub use embassy_macros::interrupt;
2021-03-29 04:11:32 +02:00
pub mod dma;
pub mod gpio;
2021-06-25 06:23:46 +02:00
pub mod spi;
2021-07-12 02:45:42 +02:00
pub mod timer;
2021-03-29 04:11:32 +02:00
pub mod uart;
2021-06-25 03:38:03 +02:00
mod clocks;
mod reset;
2021-03-29 04:11:32 +02:00
embassy_extras::peripherals! {
PIN_0,
PIN_1,
PIN_2,
PIN_3,
PIN_4,
PIN_5,
PIN_6,
PIN_7,
PIN_8,
PIN_9,
PIN_10,
PIN_11,
PIN_12,
PIN_13,
PIN_14,
PIN_15,
PIN_16,
PIN_17,
PIN_18,
PIN_19,
PIN_20,
PIN_21,
PIN_22,
PIN_23,
PIN_24,
PIN_25,
PIN_26,
PIN_27,
PIN_28,
PIN_29,
PIN_QSPI_SCLK,
PIN_QSPI_SS,
PIN_QSPI_SD0,
PIN_QSPI_SD1,
PIN_QSPI_SD2,
PIN_QSPI_SD3,
UART0,
UART1,
2021-06-25 06:23:46 +02:00
SPI0,
SPI1,
2021-07-12 02:45:42 +02:00
TIMER_ALARM0,
TIMER_ALARM1,
TIMER_ALARM2,
TIMER_ALARM3,
2021-03-29 04:11:32 +02:00
DMA_CH0,
DMA_CH1,
DMA_CH2,
DMA_CH3,
DMA_CH4,
DMA_CH5,
DMA_CH6,
DMA_CH7,
DMA_CH8,
DMA_CH9,
DMA_CH10,
DMA_CH11,
}
#[link_section = ".boot2"]
#[used]
static BOOT2: [u8; 256] = *include_bytes!("boot2.bin");
pub mod config {
#[non_exhaustive]
pub struct Config {}
impl Default for Config {
fn default() -> Self {
Self {}
}
}
}
pub fn init(_config: config::Config) -> Peripherals {
// Do this first, so that it panics if user is calling `init` a second time
// before doing anything important.
let peripherals = Peripherals::take();
unsafe {
2021-06-25 03:38:03 +02:00
clocks::init();
2021-07-12 02:45:42 +02:00
timer::init();
}
peripherals
}