Skip to content

Commit aa5a8ae

Browse files
oflebbedeadprogram
authored andcommitted
boards: fix info for the thing plus rp2040
fixes #263
1 parent 9ddd47d commit aa5a8ae

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

content/docs/reference/microcontrollers/thingplus-rp2040.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ weight: 3
66
The [Sparkfun Thing Plus RP2040](https://www.sparkfun.com/products/17745) is a tiny development board based on the Raspberry Pi [RP2040](https://datasheets.raspberrypi.org/rp2040/rp2040-datasheet.pdf) microcontroller.
77

88
Peripherals:
9-
- NINA-W102 chip with [wifinina](https://github.com/tinygo-org/drivers/tree/release/wifinina) firmware (wifi and bluetooth)
10-
- [lsm6dox](https://github.com/tinygo-org/drivers/tree/release/lsm6dox) IMU chip (acceleration, rotation and temperature)
11-
- microphone
9+
- ws2812 Neopixel
10+
- sdcard
1211

1312
## Interfaces
1413

@@ -23,30 +22,32 @@ Peripherals:
2322

2423
## Machine Package Docs
2524

26-
[Documentation for the machine package for the Nano RP2040](../machine/nano-rp2040)
25+
[Documentation for the machine package for the Sparkfun Thing Plus RP2040](../machine/thingplus-rp2040)
2726

2827
## Flashing
2928

3029
### UF2
3130

32-
The Nano RP2040 comes with the [UF2 bootloader](https://github.com/Microsoft/uf2) already installed.
31+
The Sparkfun Thing Plus RP2040 comes with the [UF2 bootloader](https://github.com/Microsoft/uf2) already installed.
3332

3433
### CLI Flashing
3534

36-
- Plug your Nano RP2040 into your computer's USB port while shorting the pins REC and GND with a jumper wire.
37-
- Once plugged in, remove the jumper pin.
35+
- Plug your Thing Plus RP2040 into your computer's USB port while pressing the BOOT button
36+
- Release BOOT Button
3837
- Flash your TinyGo program to the board using this command:
3938

4039
```shell
41-
tinygo flash -target=nano-rp2040 [PATH TO YOUR PROGRAM]
40+
tinygo flash -target=thingplus-rp2040 [PATH TO YOUR PROGRAM]
4241
```
4342

44-
- The Nano RP2040 board should restart and run your program.
43+
- The Thing Plus RP2040 board should restart and run your program.
4544

4645
### Troubleshooting
4746

4847
Any troubleshooting tips go here.
4948

5049
## Notes
5150

52-
You cannot yet use the USB port to the Nano RP2040 as a serial port. Instead `UART0` refers to the TX/RX pins on the board itself.
51+
You cannot yet use the USB port to the Thing Plus RP2040 as a serial port. Instead `UART0` refers to the TX/RX pins on the board itself.
52+
53+
The Neopixel LED and the SD Card are supported by [tinygo drivers](https://github.com/tinygo-org/drivers)

0 commit comments

Comments
 (0)