Closed charlesbmi closed 1 year ago
Updates the function calls according to the stm32f4xx-hal API changes.
stm32f4xx-hal
Tested by building all examples, as well as running the following examples on-device:
gpio_hal_blinky
mems
I checked that the behavior of these examples matched the behavior when running cargo embed on master.
cargo embed
master
I also fixed an issue where the mems example uses the incorrect LEDs. Based on my local testing, the mapping should be:
x>0
x<0
y>0
y<0
STM32F407G-DISC1
and squash commits
Squashed the version-bump commits, left the fix-LED as a separate commit since it is logically separate; should I squash that as well?
Updates the function calls according to the
stm32f4xx-hal
API changes.Tested by building all examples, as well as running the following examples on-device:
gpio_hal_blinky
mems
I checked that the behavior of these examples matched the behavior when running
cargo embed
onmaster
.I also fixed an issue where the
mems
example uses the incorrect LEDs. Based on my local testing, the mapping should be:x>0
: redx<0
: greeny>0
: orangey<0
: blue Note: I have aSTM32F407G-DISC1
board, which is the same currently linked in the README.md. Thegpio_hal_blinky
LED order looks good to me.