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
7pub mod acomp;
8pub mod adc;
9pub mod approtect;
10pub mod ble_radio;
11pub mod chip;
12pub mod clock;
13pub mod crt1;
14pub mod ficr;
15pub mod i2c;
16pub mod ieee802154_radio;
17pub mod nvmc;
18pub mod power;
19pub mod ppi;
20pub mod pwm;
21pub mod spi;
22pub mod uart;
23pub mod uicr;
24pub mod usbd;
25
26pub use crate::crt1::init;
27pub use nrf5x::{
28    aes, constants, gpio, peripheral_interrupts, pinmux, rtc, temperature, timer, trng,
29};