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#![crate_name = "lowrisc"]
9#![crate_type = "rlib"]
10
11pub mod aon_timer;
12pub mod csrng;
13pub mod flash_ctrl;
14pub mod gpio;
15pub mod hmac;
16pub mod i2c;
17pub mod otbn;
18pub mod padctrl;
19pub mod pwrmgr;
20pub mod registers;
21pub mod rsa;
22pub mod spi_host;
23pub mod uart;
24pub mod usbdev;
25pub mod virtual_otbn;