stm32-rs / stm32f7xx-hal

A Rust embedded-hal HAL for all MCUs in the STM32 F7 family
Apache License 2.0
115 stars 67 forks source link

Fix warnings in RCC tests #97

Closed Disasm closed 3 years ago

Disasm commented 3 years ago

There are also a few warnings about unused micromath::F32Ext import when building tests, but I don't know why they happen and don't change these for now.

rfuest commented 3 years ago

The micromath docs have a section about the F32Ext warning, if you want to fix them in this PR: https://docs.rs/micromath/1.1.0/micromath/#unused-import-warnings-when-linking-std

hannobraun commented 3 years ago

Looks good to me, thank you @Disasm!