You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Hardware > Configuring section of the Rust Embedded Book, the FLASH : ORIGIN value is set to 0x08000000. However in the memory.x file, the value is set to 0x00000000.
Description
In the Hardware > Configuring section of the Rust Embedded Book, the
FLASH : ORIGIN
value is set to0x08000000
. However in thememory.x
file, the value is set to0x00000000
.cortex-m-quickstart/memory.x
Line 6 in 18bb680
This is a very subtle difference but leads to the following error:
After changing the value to
FLASH : ORIGIN = 0x08000000, LENGTH = 256
the program works as expected.This was pointed out in a Reddit Post last year.
The text was updated successfully, but these errors were encountered: