Skip to content

Commit 39b05e3

Browse files
mredigrauhul
authored andcommitted
Address PR feedback
1 parent e730c98 commit 39b05e3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pico-blink-sdk/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ This example demonstrates how to integrate with the Pico SDK which is using CMak
2020

2121
- Make sure you have a recent nightly Swift toolchain that has Embedded Swift support.
2222
- Build and copy the program in the UF2 format to the Mass Storage device to trigger flashing the program into memory (after which the device will reboot and run the firmware):
23+
- (determining your toolchain identifier is step 5 in this [matter tutorial](https://apple.github.io/swift-matter-examples/tutorials/swiftmatterexamples/setup-macos/))
24+
2325
``` console
2426
$ cd pico-blink-sdk
25-
$ export TOOLCHAINS='<toolchain-name>'
27+
$ export TOOLCHAINS='<toolchain-identifier>'
2628
$ export PICO_BOARD=pico
2729
$ export PICO_SDK_PATH='<path-to-your-pico-sdk>'
2830
$ export PICO_TOOLCHAIN_PATH='<path-to-the-arm-toolchain>' # A default `brew` install will be located at `/Applications/ArmGNUToolchain/[version]/arm-none-eabi`

pico-blink/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ pip3 install -r requirements.txt
2323
```
2424

2525
- Build and copy the program in the UF2 format to the Mass Storage device to trigger flashing the program into memory (after which the device will reboot and run the firmware):
26+
- (determining your toolchain identifier is step 5 in this [matter tutorial](https://apple.github.io/swift-matter-examples/tutorials/swiftmatterexamples/setup-macos/))
2627
``` console
2728
$ cd pico-blink
28-
$ TOOLCHAINS='<toolchain-name>' ./build.sh # toolchain-name is typically `swift`
29+
$ TOOLCHAINS='<toolchain-identifier>' ./build.sh
2930
$ cp .build/blink.uf2 /Volumes/RP2040
3031
```
3132
- The green LED should now be blinking in a pattern.

0 commit comments

Comments
 (0)