diff options
author | Ayke van Laethem <[email protected]> | 2024-03-30 13:37:52 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-04-04 19:34:01 +0200 |
commit | 90b0bf646c271157f97aa59ffb2efec7eee4d2ec (patch) | |
tree | c6eee325c80df5f83530bd50628111a27134ca5b /GNUmakefile | |
parent | c55ac9f28ecef310931318f197fbd7f8606875e9 (diff) | |
download | tinygo-90b0bf646c271157f97aa59ffb2efec7eee4d2ec.tar.gz tinygo-90b0bf646c271157f97aa59ffb2efec7eee4d2ec.zip |
rp2040: make all RP2040 boards available for simulation
This makes all rp2040 boards available for simulation using
-tags=<board_name>. Importantly, this includes the Gopher Badge which
I'm working on to add to the TinyGo Playground.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 2d7da5c59..18ab754e6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -525,6 +525,8 @@ ifneq ($(WASM), 0) @$(MD5SUM) test.wasm $(TINYGO) build -size short -o test.wasm -tags=mch2022 examples/serial @$(MD5SUM) test.wasm + $(TINYGO) build -size short -o test.wasm -tags=gopher_badge examples/blinky1 + @$(MD5SUM) test.wasm endif # test all targets/boards $(TINYGO) build -size short -o test.hex -target=pca10040-s132v6 examples/blinky1 |