nrf52832/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 use nrf52::{
8 acomp, adc, aes, ble_radio, chip, clock, constants, crt1, ficr, i2c, init, nvmc,
9 peripheral_interrupts as base_interrupts, pinmux, power, ppi, pwm, rtc, spi, temperature,
10 timer, trng, uart, uicr,
11};
12pub mod gpio;
13pub mod interrupt_service;