Skip to content

Commit bfe3f68

Browse files
ysoldakdeadprogram
authored andcommitted
smoke&readme: add missing boards
1 parent 2bb7081 commit bfe3f68

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,11 @@ smoketest:
356356
@$(MD5SUM) test.hex
357357
$(TINYGO) build -size short -o test.hex -target=arduino-nano33 examples/blinky1
358358
@$(MD5SUM) test.hex
359-
$(TINYGO) build -size short -o test.hex -target=pico examples/blinky1
359+
$(TINYGO) build -size short -o test.hex -target=pico examples/blinky1
360+
@$(MD5SUM) test.hex
361+
$(TINYGO) build -size short -o test.hex -target=nano-33-ble examples/blinky1
362+
@$(MD5SUM) test.hex
363+
$(TINYGO) build -size short -o test.hex -target=nano-rp2040 examples/blinky1
360364
@$(MD5SUM) test.hex
361365
$(TINYGO) build -size short -o test.hex -target=feather-rp2040 examples/blinky1
362366
@$(MD5SUM) test.hex

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ See the [getting started instructions](https://tinygo.org/getting-started/) for
4343

4444
You can compile TinyGo programs for microcontrollers, WebAssembly and Linux.
4545

46-
The following 63 microcontroller boards are currently supported:
46+
The following 67 microcontroller boards are currently supported:
4747

4848
* [Adafruit Circuit Playground Bluefruit](https://www.adafruit.com/product/4333)
4949
* [Adafruit Circuit Playground Express](https://www.adafruit.com/product/3333)
@@ -69,7 +69,10 @@ The following 63 microcontroller boards are currently supported:
6969
* [Arduino Mega 2560](https://store.arduino.cc/arduino-mega-2560-rev3)
7070
* [Arduino MKR1000](https://store.arduino.cc/arduino-mkr1000-wifi)
7171
* [Arduino Nano](https://store.arduino.cc/arduino-nano)
72-
* [Arduino Nano33 IoT](https://store.arduino.cc/nano-33-iot)
72+
* [Arduino Nano 33 BLE](https://store.arduino.cc/nano-33-ble)
73+
* [Arduino Nano 33 BLE Sense](https://store.arduino.cc/nano-33-ble-sense)
74+
* [Arduino Nano 33 IoT](https://store.arduino.cc/nano-33-iot)
75+
* [Arduino Nano RP2040 Connect](https://store.arduino.cc/nano-rp2040-connect)
7376
* [Arduino Uno](https://store.arduino.cc/arduino-uno-rev3)
7477
* [Arduino Zero](https://store.arduino.cc/usa/arduino-zero)
7578
* [BBC micro:bit](https://microbit.org/)
@@ -96,6 +99,7 @@ The following 63 microcontroller boards are currently supported:
9699
* [PJRC Teensy 3.6](https://www.pjrc.com/store/teensy36.html)
97100
* [PJRC Teensy 4.0](https://www.pjrc.com/store/teensy40.html)
98101
* [ProductivityOpen P1AM-100](https://facts-engineering.github.io/modules/P1AM-100/P1AM-100.html)
102+
* [Raspberry Pi Pico](https://www.raspberrypi.org/products/raspberry-pi-pico/)
99103
* [Seeed Wio Terminal](https://www.seeedstudio.com/Wio-Terminal-p-4509.html)
100104
* [Seeed Seeeduino XIAO](https://www.seeedstudio.com/Seeeduino-XIAO-Arduino-Microcontroller-SAMD21-Cortex-M0+-p-4426.html)
101105
* [Seeed Sipeed MAix BiT](https://www.seeedstudio.com/Sipeed-MAix-BiT-for-RISC-V-AI-IoT-p-2872.html)

targets/nano-33-ble-sense.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"inherits": ["nano-33-ble"]
3+
}

0 commit comments

Comments
 (0)