pub struct LcdCam<'d, Dm: DriverMode> {
pub lcd: Lcd<'d, Dm>,
pub cam: Cam<'d>,
}
Available on crate feature
unstable
only.Expand description
Represents a combined LCD and Camera interface.
Fields§
§lcd: Lcd<'d, Dm>
The LCD interface.
cam: Cam<'d>
The Camera interface.
Implementations§
Source§impl<'d> LcdCam<'d, Blocking>
impl<'d> LcdCam<'d, Blocking>
Sourcepub fn into_async(self) -> LcdCam<'d, Async>
pub fn into_async(self) -> LcdCam<'d, Async>
Reconfigures the peripheral for asynchronous operation.
Sourcepub fn set_interrupt_handler(&mut self, handler: InterruptHandler)
pub fn set_interrupt_handler(&mut self, handler: InterruptHandler)
Registers an interrupt handler for the LCD_CAM peripheral.
Note that this will replace any previously registered interrupt handlers.
§Stability
This API is marked as unstable and is only available when the unstable
crate feature is enabled. This comes with no stability guarantees, and could be changed
or removed at any time.
Trait Implementations§
Source§impl InterruptConfigurable for LcdCam<'_, Blocking>
§Stability
This API is marked as unstable and is only available when the unstable
crate feature is enabled. This comes with no stability guarantees, and could be changed
or removed at any time.
impl InterruptConfigurable for LcdCam<'_, Blocking>
§Stability
This API is marked as unstable and is only available when the unstable
crate feature is enabled. This comes with no stability guarantees, and could be changed
or removed at any time.
Source§fn set_interrupt_handler(&mut self, handler: InterruptHandler)
fn set_interrupt_handler(&mut self, handler: InterruptHandler)
Registers an interrupt handler for the peripheral on the current core. Read more