Add body to match statement

This commit is contained in:
Joël Schulz-Andres 2024-05-24 14:12:01 +02:00
parent fab434ae84
commit c4b3488f7f

View File

@ -110,7 +110,7 @@ macro_rules! new_pin {
// for gpio_v1
match $aftype {
crate::gpio::AFType::Input => {},
_ => pin.set_speed($speed);
_ => {pin.set_speed($speed);},
};
Some(pin.map_into())
}};