Re-exports§
pub use embassy_stm32;
pub use embassy_usb;
pub use cortex_m;
pub use defmt_rtt;
pub use panic_probe;
Modules§
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