mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-12 01:28:10 +00:00
18 lines
386 B
Rust
18 lines
386 B
Rust
use super::{geometry::Rect, layout::simplified::SimplifiedFeatures};
|
|
|
|
#[cfg(feature = "bootloader")]
|
|
pub mod bootloader;
|
|
pub mod common_messages;
|
|
pub mod component;
|
|
pub mod constant;
|
|
#[cfg(feature = "micropython")]
|
|
pub mod layout;
|
|
pub mod screens;
|
|
pub mod theme;
|
|
|
|
pub struct ModelTRFeatures {}
|
|
|
|
impl SimplifiedFeatures for ModelTRFeatures {
|
|
const SCREEN: Rect = constant::SCREEN;
|
|
}
|