lowrisc/
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//! Implementations for generic LowRISC peripherals.
6
7#![no_std]
8
9pub mod aon_timer;
10pub mod csrng;
11pub mod flash_ctrl;
12pub mod gpio;
13pub mod hmac;
14pub mod i2c;
15pub mod otbn;
16pub mod padctrl;
17pub mod pwrmgr;
18pub mod registers;
19pub mod rsa;
20pub mod spi_host;
21pub mod uart;
22pub mod usbdev;
23pub mod virtual_otbn;