sifive/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 SiFive MCU peripherals.
6
7#![no_std]
8
9pub mod clint;
10pub mod gpio;
11pub mod plic;
12pub mod prci;
13pub mod pwm;
14pub mod rtc;
15pub mod uart;
16pub mod watchdog;