diff options
author | deadprogram <[email protected]> | 2022-04-24 20:24:09 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-04-25 11:17:42 +0200 |
commit | 5bb3ca26185d24e7e778c02d59f9d0e1719e75d8 (patch) | |
tree | 66f5f426e1b07885cc6f27b725c9a0bada5b11ee /Makefile | |
parent | a4ea85b303041b09cf05c3ee316e5e323e34d661 (diff) | |
download | tinygo-5bb3ca26185d24e7e778c02d59f9d0e1719e75d8.tar.gz tinygo-5bb3ca26185d24e7e778c02d59f9d0e1719e75d8.zip |
machine/circuitplay-bluefruit: move pin mappings so board can be compiled for WASM use in Playground
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -389,6 +389,8 @@ ifneq ($(WASM), 0) @$(MD5SUM) test.wasm $(TINYGO) build -size short -o test.wasm -tags=circuitplay_express examples/blinky1 @$(MD5SUM) test.wasm + $(TINYGO) build -size short -o test.wasm -tags=circuitplay_bluefruit examples/blinky1 + @$(MD5SUM) test.wasm endif # test all targets/boards $(TINYGO) build -size short -o test.hex -target=pca10040-s132v6 examples/blinky1 |