diff options
author | Ayke van Laethem <[email protected]> | 2022-06-30 00:52:16 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-07-16 08:31:22 +0200 |
commit | 610e7fd16a76921cbc70f8ebd89d21df11f6445f (patch) | |
tree | eeae0ce4b080a73b5cb0c647a480954e63497fcf /Makefile | |
parent | 69a6718b38b8afd9245d03f1b92d3cb7c0b435ea (diff) | |
download | tinygo-610e7fd16a76921cbc70f8ebd89d21df11f6445f.tar.gz tinygo-610e7fd16a76921cbc70f8ebd89d21df11f6445f.zip |
boards: Add MCH2022 badge
I haven't fully tested this badge because I don't have the physical
hardware but I have followed the pinout from the website.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -460,6 +460,8 @@ ifneq ($(WASM), 0) @$(MD5SUM) test.wasm $(TINYGO) build -size short -o test.wasm -tags=circuitplay_bluefruit examples/blinky1 @$(MD5SUM) test.wasm + $(TINYGO) build -size short -o test.wasm -tags=mch2022 examples/serial + @$(MD5SUM) test.wasm endif # test all targets/boards $(TINYGO) build -size short -o test.hex -target=pca10040-s132v6 examples/blinky1 @@ -663,6 +665,8 @@ ifneq ($(XTENSA), 0) @$(MD5SUM) test.bin $(TINYGO) build -size short -o test.bin -target m5stack examples/serial @$(MD5SUM) test.bin + $(TINYGO) build -size short -o test.bin -target mch2022 examples/serial + @$(MD5SUM) test.bin endif $(TINYGO) build -size short -o test.bin -target=esp32c3 examples/serial @$(MD5SUM) test.bin |