nrf52/
lib.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2022.
4
5#![no_std]
6#![crate_name = "nrf52"]
7#![crate_type = "rlib"]
8
9pub mod acomp;
10pub mod adc;
11pub mod approtect;
12pub mod ble_radio;
13pub mod chip;
14pub mod clock;
15pub mod crt1;
16pub mod ficr;
17pub mod i2c;
18pub mod ieee802154_radio;
19pub mod nvmc;
20pub mod power;
21pub mod ppi;
22pub mod pwm;
23pub mod spi;
24pub mod uart;
25pub mod uicr;
26pub mod usbd;
27
28pub use crate::crt1::init;
29pub use nrf5x::{
30    aes, constants, gpio, peripheral_interrupts, pinmux, rtc, temperature, timer, trng,
31};