Skip to content

Commit cf75677

Browse files
committed
Fix build for rtic-usb-cdc-echo example
1 parent 08a4caa commit cf75677

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ required-features = ["stm32f411", "rtic"] # stm32f411
476476

477477
[[example]]
478478
name = "rtic-usb-cdc-echo"
479-
required-features = ["stm32f411", "rtic"] # stm32f411
479+
required-features = ["stm32f411", "rtic", "otg-fs", "usb_fs"] # stm32f411
480480

481481
[[example]]
482482
name = "sd"

memory.x

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MEMORY
22
{
33
/* NOTE K = KiBi = 1024 bytes */
4-
FLASH : ORIGIN = 0x08000000, LENGTH = 64K
4+
FLASH : ORIGIN = 0x08000000, LENGTH = 128K
55
RAM : ORIGIN = 0x20000000, LENGTH = 32K
66
}
77

0 commit comments

Comments
 (0)