Crate embassy_stm32_plus

Source

Re-exports§

pub use embassy_stm32;
pub use embassy_usb;
pub use cortex_m;
pub use defmt_rtt;
pub use panic_probe;

Modules§

builder
macro
traits

Macros§

match_some_break
match Option
if is Some, will be return value and keep loop
if is Nome, will be return custom value and break loop
need to be used in loop to break value, invalid in for and while
match_some_continue
match Option
if is Some, will be return value and keep loop
if is Nome, will be continue the loop
match_some_exec
match Option
if is Some, will be return value
if is Nome, will be return custom value
match_some_return
match Option
if is Some, will be return value
if is Nome, will be return custom value and exit method