2020-09-22 18:03:43 +02:00
|
|
|
#![no_std]
|
|
|
|
#![feature(generic_associated_types)]
|
|
|
|
#![feature(asm)]
|
2021-03-17 02:48:16 +01:00
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
2020-09-22 18:03:43 +02:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2021-02-26 01:06:58 +01:00
|
|
|
#![allow(incomplete_features)]
|
2020-09-22 18:03:43 +02:00
|
|
|
|
|
|
|
#[cfg(not(any(
|
2020-09-24 19:56:47 +02:00
|
|
|
feature = "52810",
|
|
|
|
feature = "52811",
|
|
|
|
feature = "52832",
|
|
|
|
feature = "52833",
|
|
|
|
feature = "52840",
|
2020-09-22 18:03:43 +02:00
|
|
|
)))]
|
2020-09-24 19:56:47 +02:00
|
|
|
compile_error!("No chip feature activated. You must activate exactly one of the following features: 52810, 52811, 52832, 52833, 52840");
|
2020-09-22 18:03:43 +02:00
|
|
|
|
|
|
|
#[cfg(any(
|
2020-09-24 19:56:47 +02:00
|
|
|
all(feature = "52810", feature = "52811"),
|
|
|
|
all(feature = "52810", feature = "52832"),
|
|
|
|
all(feature = "52810", feature = "52833"),
|
|
|
|
all(feature = "52810", feature = "52840"),
|
|
|
|
all(feature = "52811", feature = "52832"),
|
|
|
|
all(feature = "52811", feature = "52833"),
|
|
|
|
all(feature = "52811", feature = "52840"),
|
|
|
|
all(feature = "52832", feature = "52833"),
|
|
|
|
all(feature = "52832", feature = "52840"),
|
|
|
|
all(feature = "52833", feature = "52840"),
|
2020-09-22 18:03:43 +02:00
|
|
|
))]
|
2020-09-24 19:56:47 +02:00
|
|
|
compile_error!("Multile chip features activated. You must activate exactly one of the following features: 52810, 52811, 52832, 52833, 52840");
|
2020-09-22 18:03:43 +02:00
|
|
|
|
2020-09-24 19:56:47 +02:00
|
|
|
#[cfg(feature = "52810")]
|
2020-09-22 18:03:43 +02:00
|
|
|
pub use nrf52810_pac as pac;
|
2020-09-24 19:56:47 +02:00
|
|
|
#[cfg(feature = "52811")]
|
2020-09-22 18:03:43 +02:00
|
|
|
pub use nrf52811_pac as pac;
|
2020-09-24 19:56:47 +02:00
|
|
|
#[cfg(feature = "52832")]
|
2020-09-22 18:03:43 +02:00
|
|
|
pub use nrf52832_pac as pac;
|
2020-09-24 19:56:47 +02:00
|
|
|
#[cfg(feature = "52833")]
|
2020-09-22 18:03:43 +02:00
|
|
|
pub use nrf52833_pac as pac;
|
2020-09-24 19:56:47 +02:00
|
|
|
#[cfg(feature = "52840")]
|
2020-09-22 18:03:43 +02:00
|
|
|
pub use nrf52840_pac as pac;
|
|
|
|
|
2021-01-18 14:22:55 +01:00
|
|
|
/// Length of Nordic EasyDMA differs for MCUs
|
|
|
|
#[cfg(any(
|
|
|
|
feature = "52810",
|
|
|
|
feature = "52811",
|
|
|
|
feature = "52832",
|
|
|
|
feature = "51"
|
|
|
|
))]
|
|
|
|
pub mod target_constants {
|
|
|
|
// NRF52832 8 bits1..0xFF
|
|
|
|
pub const EASY_DMA_SIZE: usize = 255;
|
|
|
|
// Easy DMA can only read from data ram
|
|
|
|
pub const SRAM_LOWER: usize = 0x2000_0000;
|
|
|
|
pub const SRAM_UPPER: usize = 0x3000_0000;
|
|
|
|
}
|
|
|
|
#[cfg(any(feature = "52840", feature = "52833", feature = "9160"))]
|
|
|
|
pub mod target_constants {
|
|
|
|
// NRF52840 and NRF9160 16 bits 1..0xFFFF
|
|
|
|
pub const EASY_DMA_SIZE: usize = 65535;
|
|
|
|
// Limits for Easy DMA - it can only read from data ram
|
|
|
|
pub const SRAM_LOWER: usize = 0x2000_0000;
|
|
|
|
pub const SRAM_UPPER: usize = 0x3000_0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Does this slice reside entirely within RAM?
|
|
|
|
pub(crate) fn slice_in_ram(slice: &[u8]) -> bool {
|
|
|
|
let ptr = slice.as_ptr() as usize;
|
|
|
|
ptr >= target_constants::SRAM_LOWER && (ptr + slice.len()) < target_constants::SRAM_UPPER
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return an error if slice is not in RAM.
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
pub(crate) fn slice_in_ram_or<T>(slice: &[u8], err: T) -> Result<(), T> {
|
|
|
|
if slice.len() == 0 || slice_in_ram(slice) {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-01 17:46:56 +01:00
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
2020-12-28 23:57:50 +01:00
|
|
|
pub mod buffered_uarte;
|
2021-03-19 04:08:44 +01:00
|
|
|
pub mod gpio;
|
2020-09-23 00:32:49 +02:00
|
|
|
pub mod gpiote;
|
2020-09-22 18:03:43 +02:00
|
|
|
pub mod interrupt;
|
2021-03-27 04:40:05 +01:00
|
|
|
pub mod ppi;
|
2020-10-31 23:03:09 +01:00
|
|
|
#[cfg(feature = "52840")]
|
2020-09-22 18:03:43 +02:00
|
|
|
pub mod qspi;
|
2020-09-24 19:59:20 +02:00
|
|
|
pub mod rtc;
|
2021-03-24 18:33:17 +01:00
|
|
|
pub mod saadc;
|
2021-01-18 14:22:55 +01:00
|
|
|
pub mod spim;
|
2021-03-29 00:42:08 +02:00
|
|
|
pub mod system;
|
2021-03-28 22:40:41 +02:00
|
|
|
pub mod timer;
|
2020-12-23 16:18:29 +01:00
|
|
|
pub mod uarte;
|
2021-03-21 21:58:59 +01:00
|
|
|
|
|
|
|
embassy_extras::peripherals! {
|
|
|
|
// RTC
|
2021-03-27 03:12:58 +01:00
|
|
|
RTC0,
|
|
|
|
RTC1,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52832", feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
RTC2,
|
2021-03-21 21:58:59 +01:00
|
|
|
|
|
|
|
// QSPI
|
|
|
|
#[cfg(feature = "52840")]
|
2021-03-27 03:12:58 +01:00
|
|
|
QSPI,
|
2021-03-21 21:58:59 +01:00
|
|
|
|
|
|
|
// UARTE
|
2021-03-27 03:12:58 +01:00
|
|
|
UARTE0,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840", feature = "9160"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
UARTE1,
|
2021-03-21 21:58:59 +01:00
|
|
|
|
|
|
|
// SPIM
|
|
|
|
// TODO this is actually shared with SPI, SPIM, SPIS, TWI, TWIS, TWIS.
|
|
|
|
// When they're all implemented, they should be only one peripheral here.
|
2021-03-27 03:12:58 +01:00
|
|
|
SPIM0,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52832", feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
SPIM1,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52832", feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
SPIM2,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
SPIM3,
|
2021-03-21 21:58:59 +01:00
|
|
|
|
2021-03-24 18:33:17 +01:00
|
|
|
// SAADC
|
2021-03-27 03:12:58 +01:00
|
|
|
SAADC,
|
2021-03-24 18:33:17 +01:00
|
|
|
|
2021-03-28 22:40:41 +02:00
|
|
|
// TIMER
|
|
|
|
TIMER0,
|
|
|
|
TIMER1,
|
|
|
|
TIMER2,
|
|
|
|
#[cfg(any(feature = "52832", feature = "52833", feature = "52840"))]
|
|
|
|
TIMER3,
|
|
|
|
#[cfg(any(feature = "52832", feature = "52833", feature = "52840"))]
|
|
|
|
TIMER4,
|
|
|
|
|
2021-03-21 21:58:59 +01:00
|
|
|
// GPIOTE
|
2021-03-27 03:12:58 +01:00
|
|
|
GPIOTE,
|
|
|
|
GPIOTE_CH0,
|
|
|
|
GPIOTE_CH1,
|
|
|
|
GPIOTE_CH2,
|
|
|
|
GPIOTE_CH3,
|
|
|
|
GPIOTE_CH4,
|
|
|
|
GPIOTE_CH5,
|
|
|
|
GPIOTE_CH6,
|
|
|
|
GPIOTE_CH7,
|
2021-03-21 21:58:59 +01:00
|
|
|
|
2021-03-27 04:40:05 +01:00
|
|
|
// PPI
|
|
|
|
PPI_CH0,
|
|
|
|
PPI_CH1,
|
|
|
|
PPI_CH2,
|
|
|
|
PPI_CH3,
|
|
|
|
PPI_CH4,
|
|
|
|
PPI_CH5,
|
|
|
|
PPI_CH6,
|
|
|
|
PPI_CH7,
|
|
|
|
PPI_CH8,
|
|
|
|
PPI_CH9,
|
|
|
|
PPI_CH10,
|
|
|
|
PPI_CH11,
|
|
|
|
PPI_CH12,
|
|
|
|
PPI_CH13,
|
|
|
|
PPI_CH14,
|
|
|
|
PPI_CH15,
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
PPI_CH16,
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
PPI_CH17,
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
PPI_CH18,
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
PPI_CH19,
|
|
|
|
PPI_CH20,
|
|
|
|
PPI_CH21,
|
|
|
|
PPI_CH22,
|
|
|
|
PPI_CH23,
|
|
|
|
PPI_CH24,
|
|
|
|
PPI_CH25,
|
|
|
|
PPI_CH26,
|
|
|
|
PPI_CH27,
|
|
|
|
PPI_CH28,
|
|
|
|
PPI_CH29,
|
|
|
|
PPI_CH30,
|
|
|
|
PPI_CH31,
|
|
|
|
|
|
|
|
PPI_GROUP0,
|
|
|
|
PPI_GROUP1,
|
|
|
|
PPI_GROUP2,
|
|
|
|
PPI_GROUP3,
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
PPI_GROUP4,
|
|
|
|
#[cfg(not(feature = "51"))]
|
|
|
|
PPI_GROUP5,
|
|
|
|
|
2021-03-21 21:58:59 +01:00
|
|
|
// GPIO port 0
|
2021-03-27 03:12:58 +01:00
|
|
|
P0_00,
|
|
|
|
P0_01,
|
|
|
|
P0_02,
|
|
|
|
P0_03,
|
|
|
|
P0_04,
|
|
|
|
P0_05,
|
|
|
|
P0_06,
|
|
|
|
P0_07,
|
|
|
|
P0_08,
|
|
|
|
P0_09,
|
|
|
|
P0_10,
|
|
|
|
P0_11,
|
|
|
|
P0_12,
|
|
|
|
P0_13,
|
|
|
|
P0_14,
|
|
|
|
P0_15,
|
|
|
|
P0_16,
|
|
|
|
P0_17,
|
|
|
|
P0_18,
|
|
|
|
P0_19,
|
|
|
|
P0_20,
|
|
|
|
P0_21,
|
|
|
|
P0_22,
|
|
|
|
P0_23,
|
|
|
|
P0_24,
|
|
|
|
P0_25,
|
|
|
|
P0_26,
|
|
|
|
P0_27,
|
|
|
|
P0_28,
|
|
|
|
P0_29,
|
|
|
|
P0_30,
|
|
|
|
P0_31,
|
2021-03-21 21:58:59 +01:00
|
|
|
|
|
|
|
// GPIO port 1
|
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_00,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_01,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_02,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_03,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_04,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_05,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_06,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_07,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_08,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_09,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_10,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_11,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_12,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_13,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_14,
|
2021-03-21 21:58:59 +01:00
|
|
|
#[cfg(any(feature = "52833", feature = "52840"))]
|
2021-03-27 03:12:58 +01:00
|
|
|
P1_15,
|
2021-03-21 21:58:59 +01:00
|
|
|
}
|