diff options
author | Ayke van Laethem <[email protected]> | 2022-06-28 14:57:18 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-07-15 14:46:33 +0200 |
commit | 20a46e1b28c951da745061d119c13ab997242422 (patch) | |
tree | e3be5f61cc4b543c4b75c0a65bdf3b226081eb01 /Makefile | |
parent | 926c02b6ffd852deda4c8e24fbfff858783c6306 (diff) | |
download | tinygo-20a46e1b28c951da745061d119c13ab997242422.tar.gz tinygo-20a46e1b28c951da745061d119c13ab997242422.zip |
nrf51: define and use P0_xx constants
This makes nrf51 consistent with nrf52 and other chips, which do provide
constants for hardware pin numbers.
I've also added the microbit to the smoketest because it is used on
play.tinygo.org. And removed PCA10040 and PCA10056 because they aren't
provided on play.tinygo.org anymore.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -454,9 +454,7 @@ ifneq ($(WASM), 0) @$(MD5SUM) test.wasm $(TINYGO) build -size short -o test.wasm -tags=reelboard examples/blinky1 @$(MD5SUM) test.wasm - $(TINYGO) build -size short -o test.wasm -tags=pca10040 examples/blinky2 - @$(MD5SUM) test.wasm - $(TINYGO) build -size short -o test.wasm -tags=pca10056 examples/blinky2 + $(TINYGO) build -size short -o test.wasm -tags=microbit examples/microbit-blink @$(MD5SUM) test.wasm $(TINYGO) build -size short -o test.wasm -tags=circuitplay_express examples/blinky1 @$(MD5SUM) test.wasm |