PIO support for RPi Pico

This commit is contained in:
Simon Berg
2022-07-27 22:45:46 +02:00
parent e94ca0efd6
commit 35db6e639b
8 changed files with 1576 additions and 2 deletions

View File

@ -12,6 +12,12 @@ pub mod dma;
pub mod gpio;
pub mod i2c;
pub mod interrupt;
#[cfg(feature = "pio")]
pub mod pio;
#[cfg(feature = "pio")]
pub mod pio_instr_util;
pub mod rom_data;
pub mod rtc;
pub mod spi;
@ -102,6 +108,9 @@ embassy_hal_common::peripherals! {
FLASH,
ADC,
PIO0,
PIO1,
}
#[link_section = ".boot2"]