Skip to content

Commit abd68d1

Browse files
dependabot[bot]rursprung
authored andcommitted
Bump stm32f4xx-hal in /examples/stm32f4-event-printer
Bumps [stm32f4xx-hal](https://github.com/stm32-rs/stm32f4xx-hal) from 0.15.0 to 0.16.0. - [Release notes](https://github.com/stm32-rs/stm32f4xx-hal/releases) - [Changelog](https://github.com/stm32-rs/stm32f4xx-hal/blob/master/CHANGELOG.md) - [Commits](stm32-rs/stm32f4xx-hal@v0.15.0...v0.16.0) --- updated-dependencies: - dependency-name: stm32f4xx-hal dependency-type: direct:production update-type: version-update:semver-minor ... Note: due to a breaking change in the HAL the import had to be changed so that the trait impl is still in scope. Signed-off-by: dependabot[bot] <[email protected]>
1 parent 149fe81 commit abd68d1

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

examples/stm32f4-event-printer/Cargo.lock

Lines changed: 10 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/stm32f4-event-printer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cortex-m = { version = "0.7", features = ["critical-section-single-core"]}
99
cortex-m-rtic = "1.1.4"
1010
panic-probe = { version = "0.3", features = ["print-defmt"] }
1111

12-
stm32f4xx-hal = { version = "0.15", features = ["stm32f401", "rtic", "rtic-monotonic"] }
12+
stm32f4xx-hal = { version = "0.16", features = ["stm32f401", "rtic", "rtic-monotonic"] }
1313

1414
fugit = "0.3"
1515

examples/stm32f4-event-printer/src/adafruit_bluefruit_le_uart_friend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use stm32f4xx_hal::dma::config::DmaConfig;
22
use stm32f4xx_hal::dma::{PeripheralToMemory, Stream2, StreamsTuple, Transfer};
33
use stm32f4xx_hal::gpio::{PA10, PB6};
44
use stm32f4xx_hal::pac::{DMA2, USART1};
5-
use stm32f4xx_hal::prelude::_stm32f4xx_hal_time_U32Ext;
5+
use stm32f4xx_hal::prelude::*;
66
use stm32f4xx_hal::rcc::Clocks;
77
use stm32f4xx_hal::serial;
88
use stm32f4xx_hal::serial::{Rx, Serial};

0 commit comments

Comments
 (0)