pub struct Cec<const BASE: usize> { /* private fields */ }
Expand description
HDMI-CEC driver.
Implementations§
Source§impl<const BASE: usize> Cec<BASE>
impl<const BASE: usize> Cec<BASE>
Sourcepub unsafe fn new() -> Cec<BASE>
pub unsafe fn new() -> Cec<BASE>
Create a new HDMI CEC driver.
§Safety
- The HDMI CEC source clock must be enabled.
- The HDMI CEC pin must be configured.
- The HDMI CEC peripheral should be reset before.
- The HDMI CEC registers provided by the PAC should be dropped.
- The generic BASE parameter must be correct or bad things will happen.
§Panics
Panics if reading CFGR does not return the value written. This occurs when the HDMI CEC peripheral clocks are not configured correctly.
§Example
use stm32_cec::Cec;
// device specific setup occurs here
// ...
// valid address for the STM32H7
let mut cec: Cec<0x40006C00> = unsafe { Cec::<0x40006C00>::new() };
Trait Implementations§
Auto Trait Implementations§
impl<const BASE: usize> Freeze for Cec<BASE>
impl<const BASE: usize> RefUnwindSafe for Cec<BASE>
impl<const BASE: usize> Send for Cec<BASE>
impl<const BASE: usize> Sync for Cec<BASE>
impl<const BASE: usize> Unpin for Cec<BASE>
impl<const BASE: usize> UnwindSafe for Cec<BASE>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more