nrf52/lib.rs
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2022.
#![no_std]
#![crate_name = "nrf52"]
#![crate_type = "rlib"]
pub mod acomp;
pub mod adc;
pub mod approtect;
pub mod ble_radio;
pub mod chip;
pub mod clock;
pub mod crt1;
pub mod ficr;
pub mod i2c;
pub mod ieee802154_radio;
pub mod nvmc;
pub mod power;
pub mod ppi;
pub mod pwm;
pub mod spi;
pub mod uart;
pub mod uicr;
pub mod usbd;
pub use crate::crt1::init;
pub use nrf5x::{
aes, constants, gpio, peripheral_interrupts, pinmux, rtc, temperature, timer, trng,
};