1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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 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,
};