capsules_core/
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 2023.
4
5#![forbid(unsafe_code)]
6#![no_std]
7
8pub mod test;
9
10#[macro_use]
11pub mod stream;
12
13pub mod adc;
14pub mod alarm;
15pub mod button;
16pub mod console;
17pub mod console_ordered;
18pub mod driver;
19pub mod gpio;
20pub mod i2c_master;
21pub mod i2c_master_slave_combo;
22pub mod i2c_master_slave_driver;
23pub mod led;
24pub mod low_level_debug;
25pub mod process_console;
26pub mod rng;
27pub mod spi_controller;
28pub mod spi_peripheral;
29pub mod virtualizers;