litex/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//! Drivers and support modules for LiteX SoCs
6
7#![no_std]
8
9// Exported as the LiteX Register Abstraction may be used by other
10// modules
11pub mod litex_registers;
12
13pub mod event_manager;
14pub mod gpio;
15pub mod led_controller;
16pub mod liteeth;
17pub mod timer;
18pub mod uart;