Skip to content

Commit 057751d

Browse files
bors[bot]no111u3
andauthored
Merge #554
554: Fix build for rtic-usb-cdc-echo example r=burrbull a=no111u3 Co-authored-by: Boris Vinogradov <[email protected]>
2 parents 08a4caa + 715a420 commit 057751d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3535
### Fixed
3636
- use register.modify instead of register.write to start PWM [#501]
3737
- add missing generic param for Spi::release implementation.
38+
- build rtic-usb-cdc-echo example [#554]
3839

3940
### Added
4041

@@ -74,7 +75,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7475
[#527]: https://github.com/stm32-rs/stm32f4xx-hal/pull/527
7576
[#551]: https://github.com/stm32-rs/stm32f4xx-hal/pull/551
7677
[#552]: https://github.com/stm32-rs/stm32f4xx-hal/pull/552
77-
[#553]: https://github.com/stm32-rs/stm32f4xx-hal/pull/552
78+
[#553]: https://github.com/stm32-rs/stm32f4xx-hal/pull/553
79+
[#554]: https://github.com/stm32-rs/stm32f4xx-hal/pull/554
7880

7981
## [v0.13.2] - 2022-05-16
8082

Cargo.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)