-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Description
Thank you for this course; it's excellent.
I am following the "Bare Metal" section but encountered some noob issues that aren't (clearly?) documented.
I am following the course here rather than from the GitHub repo.
Perhaps that's one of my issues?
- micro:bit v2 is referenced here but perhaps add a qualifier that this must be the v2 (and not the v1) because these use different MCUs (nRF52833 vs. nRF51822) and the code in the tutorials is specific to the nRF52833.
- Referencing the GitHub repo, I created
.cargo/config.toml
andEmbed.toml
but the repo does not include nor mention the requirement to create amemory.x
file in the root (see below) main.rs
includesmod interrupts;
but this has not been referenced and appears to be redundant
memory.x
:
MEMORY
{
/* nRF52833: 512KB Flash, 128KB RAM */
FLASH : ORIGIN = 0x00000000, LENGTH = 512K
RAM : ORIGIN = 0x20000000, LENGTH = 128K
}
Once these lessons were learned, the code compiles and deploys to the device!
Metadata
Metadata
Assignees
Labels
No labels