Would be nice to have a nicer api instead of manually bit shifting, e.g Replace ```rust gpio_reg_x.write(|w| unsafe { w.bits(0x1 << 0) }); ``` With, or similar ```rust gpio_reg_x.write(|w| w.gpio0().set_bit()) ```
Would be nice to have a nicer api instead of manually bit shifting, e.g
Replace
With, or similar