hdmi_hal/lib.rs
1//! Hardware abstraction traits for the HDMI stack.
2//!
3//! `hdmi-hal` defines the behavioral contracts between protocol logic and hardware.
4//! It is a traits-only crate: no implementations live here.
5
6#![no_std]
7#![forbid(unsafe_code)]
8
9/// PHY lane configuration traits and associated types.
10pub mod phy;
11
12/// SCDC register transport trait.
13pub mod scdc;