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
{{ message }}
This repository was archived by the owner on Jul 29, 2025. It is now read-only.
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 : ORIGINvalue is set to0x08000000. However in thememory.xfile, 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 = 256the program works as expected.This was pointed out in a Reddit Post last year.