litex/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Licensed under the Apache License, Version 2.0 or the MIT License.
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2022.

//! Drivers and support modules for LiteX SoCs

#![no_std]
#![crate_name = "litex"]
#![crate_type = "rlib"]

// Exported as the LiteX Register Abstraction may be used by other
// modules
pub mod litex_registers;

pub mod event_manager;
pub mod gpio;
pub mod led_controller;
pub mod liteeth;
pub mod timer;
pub mod uart;