Skip to content

Commit

Permalink
fix: change chip names in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
fhanrath committed Dec 25, 2024
1 parent 888d525 commit 3e21910
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/user_guide/2-2_local_compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ By default, Rust firmware is an ELF file, so we have to do some extra steps conv

RMK uses [cargo-make](https://github.com/sagiegurari/cargo-make) to automate the uf2 firmware generation.

Then you should make sure the chip family argument(aka argument after --family) in `Makefile.toml` is correct. You can get your chip's family [here](https://git.sr.ht/~fenris/hex-to-uf2/tree/main/item/hex_to_uf2/src/families.rs#L7).
Then you should make sure the chip family argument(aka argument after --family) in `Makefile.toml` is correct. You can get your chip's family [here](https://github.com/fhanrath/hex-to-uf2/blob/main/hex_to_uf2/src/families.rs#L7).

That's all you need to set up. The final step is to run

Expand Down
2 changes: 1 addition & 1 deletion examples/use_config/nrf52832_ble/Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ args = [
"--output-path",
"rmk.uf2",
"--family",
"nrf52832xxaa",
"nrf52832xx-aa",
]
dependencies = ["objcopy"]
2 changes: 1 addition & 1 deletion examples/use_rust/nrf52832_ble/Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ args = [
"--output-path",
"rmk.uf2",
"--family",
"nrf52832xxaa",
"nrf52832xx-aa",
]
dependencies = ["objcopy"]
2 changes: 1 addition & 1 deletion examples/use_rust/stm32f4/Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ args = [
"--family",
"rmk.uf2",
"--family",
"stm32f411xe",
"stm32f4",
]
dependencies = ["objcopy"]

0 comments on commit 3e21910

Please sign in to comment.