Skip to content

Commit 5aab1f1

Browse files
committed
Update dependencies
1 parent c307e14 commit 5aab1f1

17 files changed

Lines changed: 124 additions & 308 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ members = [
1111
"example-stlinkv3-board",
1212
"example-xcore407i-board",
1313
"stm32-log",
14-
"stm32f7xx-hal",
15-
"synopsys-usb-otg",
1614
]
1715

1816
[patch.crates-io]
1917
stm32-log = { path = "stm32-log" }
20-
synopsys-usb-otg = { path = "synopsys-usb-otg" }
21-
stm32f7xx-hal = { path = "stm32f7xx-hal" }

example-f401-board/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
panic-semihosting = "0.5.2"
9-
cortex-m-rt = "0.7.1"
9+
cortex-m-rt = "0.7.5"
1010
usbd-serial = "0.2.0"
11-
stm32f4xx-hal = { version = "0.17.1", features = ["stm32f401", "usb_fs"] }
11+
stm32f4xx-hal = { version = "0.22.1", features = ["stm32f401", "usb_fs"] }
1212
usb-device = "0.3.0"

example-f407-board/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
panic-semihosting = "0.5.2"
9-
cortex-m-rt = "0.7.1"
9+
cortex-m-rt = "0.7.5"
1010
usbd-serial = "0.2.0"
11-
stm32f4xx-hal = { version = "0.17.1", features = ["stm32f407", "usb_fs"] }
11+
stm32f4xx-hal = { version = "0.22.1", features = ["stm32f407", "usb_fs"] }
1212
usb-device = "0.3.0"

example-f429zi-board/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2018"
66

77
[dependencies]
88
panic-semihosting = "0.5.2"
9-
cortex-m-rt = "0.7.1"
9+
cortex-m-rt = "0.7.5"
1010
usbd-serial = "0.2.0"
11-
stm32f4xx-hal = { version = "0.17.1", features = ["stm32f429"] }
11+
stm32f4xx-hal = { version = "0.22.1", features = ["stm32f429"] }
1212
usb-device = "0.3.0"
1313

1414
[features]

example-f446re-board/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2018"
66

77
[dependencies]
88
panic-semihosting = "0.5.2"
9-
cortex-m-rt = "0.7.1"
9+
cortex-m-rt = "0.7.5"
1010
usbd-serial = "0.2.0"
11-
stm32f4xx-hal = { version = "0.17.1", features = ["stm32f446"] }
11+
stm32f4xx-hal = { version = "0.22.1", features = ["stm32f446"] }
1212
usb-device = "0.3.0"
1313

1414
[features]

example-f446ze-board/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2018"
66

77
[dependencies]
88
panic-semihosting = "0.5.2"
9-
cortex-m-rt = "0.7.1"
9+
cortex-m-rt = "0.7.5"
1010
usbd-serial = "0.2.0"
11-
stm32f4xx-hal = { version = "0.17.1", features = ["stm32f446"] }
11+
stm32f4xx-hal = { version = "0.22.1", features = ["stm32f446"] }
1212
usb-device = "0.3.0"
1313

1414
[features]

example-f723e-disco-board/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,8 @@ authors = ["Vadim Kaushan <admin@disasm.info>"]
55
edition = "2018"
66

77
[dependencies]
8-
panic-halt = "0.2.0"
9-
cortex-m = "0.7.4"
10-
cortex-m-rt = "0.7.1"
11-
stm32f7xx-hal = { version = "0.6.0", features = ["stm32f723"] }
12-
nb = "0.1.2"
8+
cortex-m-rt = "0.7.5"
9+
stm32f7xx-hal = { version = "0.8.0", features = ["stm32f723"] }
1310
rtt-target = { version = "0.3.1", features = ["cortex-m"] }
1411
panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] }
1512
usbd-serial = "0.2.0"

example-f723e-disco-board/examples/serial.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fn main() -> ! {
4545
dp.OTG_FS_DEVICE,
4646
dp.OTG_FS_PWRCLK,
4747
(gpioa.pa11.into_alternate(), gpioa.pa12.into_alternate()),
48-
clocks,
48+
&clocks,
4949
);
5050
#[cfg(feature = "hs")]
5151
let usb = USB::new_with_internal_hs_phy(
@@ -54,7 +54,7 @@ fn main() -> ! {
5454
dp.OTG_HS_PWRCLK,
5555
dp.USBPHYC,
5656
(gpiob.pb14.into_alternate(), gpiob.pb15.into_alternate()),
57-
clocks,
57+
&clocks,
5858
);
5959

6060
let usb_bus = UsbBus::new(usb, unsafe { &mut EP_MEMORY });

example-f723e-disco-board/examples/test_class.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fn main() -> ! {
4040
dp.OTG_FS_DEVICE,
4141
dp.OTG_FS_PWRCLK,
4242
(gpioa.pa11.into_alternate(), gpioa.pa12.into_alternate()),
43-
clocks,
43+
&clocks,
4444
);
4545
#[cfg(feature = "hs")]
4646
let usb = USB::new_with_internal_hs_phy(
@@ -49,7 +49,7 @@ fn main() -> ! {
4949
dp.OTG_HS_PWRCLK,
5050
dp.USBPHYC,
5151
(gpiob.pb14.into_alternate(), gpiob.pb15.into_alternate()),
52-
clocks,
52+
&clocks,
5353
);
5454

5555
let usb_bus = UsbBus::new(usb, unsafe { &mut EP_MEMORY });

0 commit comments

Comments
 (0)