nrf52833/
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
7// FIXME: Move ieee802154_radio to an nrf528xx crate so this can access it.
8
9pub use nrf52::{
10    acomp, adc, aes, ble_radio, chip, clock, constants, crt1, ficr, i2c, ieee802154_radio, init,
11    nvmc, peripheral_interrupts as base_interrupts, pinmux, power, ppi, pwm, rtc, spi, temperature,
12    timer, trng, uart, uicr,
13};
14pub mod gpio;
15pub mod interrupt_service;