We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e51bd0f commit ff77523Copy full SHA for ff77523
Makefile
@@ -42,6 +42,10 @@ smoketest-tinygo:
42
@md5sum test.hex
43
$(TINYGO) build -o test.uf2 -size=short -target=nano-rp2040 ./examples/advertisement
44
45
+ $(TINYGO) build -o test.uf2 -size=short -target=feather-m4 -tags="ninafw ninafw_featherwing_init" ./examples/advertisement
46
+ @md5sum test.hex
47
+ $(TINYGO) build -o test.uf2 -size=short -target=pybadge ./examples/advertisement
48
49
50
smoketest-linux:
51
# Test on Linux.
adapter_ninafw-machine.go
@@ -8,7 +8,7 @@ import (
8
9
func init() {
10
AdapterConfig = NINAConfig{
11
- UART: machine.NINA_UART,
+ UART: machine.UART_NINA,
12
CS: machine.NINA_CS,
13
ACK: machine.NINA_ACK,
14
GPIO0: machine.NINA_GPIO0,
0 commit comments