Skip to content

Commit ff77523

Browse files
committed
adding smoke tests and fixing UART name
1 parent e51bd0f commit ff77523

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ smoketest-tinygo:
4242
@md5sum test.hex
4343
$(TINYGO) build -o test.uf2 -size=short -target=nano-rp2040 ./examples/advertisement
4444
@md5sum test.hex
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+
@md5sum test.hex
4549

4650
smoketest-linux:
4751
# Test on Linux.

adapter_ninafw-machine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
func init() {
1010
AdapterConfig = NINAConfig{
11-
UART: machine.NINA_UART,
11+
UART: machine.UART_NINA,
1212
CS: machine.NINA_CS,
1313
ACK: machine.NINA_ACK,
1414
GPIO0: machine.NINA_GPIO0,

0 commit comments

Comments
 (0)