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#![crate_name = "litex"]
9#![crate_type = "rlib"]
10
11// Exported as the LiteX Register Abstraction may be used by other
12// modules
13pub mod litex_registers;
14
15pub mod event_manager;
16pub mod gpio;
17pub mod led_controller;
18pub mod liteeth;
19pub mod timer;
20pub mod uart;