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