diff options
author | Olaf Flebbe <[email protected]> | 2021-03-21 21:02:57 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-03-28 21:38:05 +0200 |
commit | f23ba3b02388fb9cac487c3db4053fab7c64dd5d (patch) | |
tree | 7d0fed9ea2ca4606d7effb0f3fc4a443c2c12620 /Makefile | |
parent | 2aa2e750b9e594f99012811c5a2def891dce69e1 (diff) | |
download | tinygo-f23ba3b02388fb9cac487c3db4053fab7c64dd5d.tar.gz tinygo-f23ba3b02388fb9cac487c3db4053fab7c64dd5d.zip |
initial support for pca10059
Using the official USB Vendor name even for other boards.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -267,6 +267,10 @@ smoketest: @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=pca10056 examples/blinky2 @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=pca10059 examples/blinky1 + @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=pca10059 examples/blinky2 + @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=itsybitsy-m0 examples/blinky1 @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=feather-m0 examples/blinky1 @@ -396,6 +400,7 @@ endif $(TINYGO) build -size short -o test.hex -target=pca10040 -opt=0 ./testdata/stdlib.go @$(MD5SUM) test.hex + wasmtest: $(GO) test ./tests/wasm |