Skip to content

Commit

Permalink
adding smoke tests and fixing UART name
Browse files Browse the repository at this point in the history
  • Loading branch information
bgould committed Jan 16, 2024
1 parent e51bd0f commit ff77523
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ smoketest-tinygo:
@md5sum test.hex
$(TINYGO) build -o test.uf2 -size=short -target=nano-rp2040 ./examples/advertisement
@md5sum test.hex
$(TINYGO) build -o test.uf2 -size=short -target=feather-m4 -tags="ninafw ninafw_featherwing_init" ./examples/advertisement
@md5sum test.hex
$(TINYGO) build -o test.uf2 -size=short -target=pybadge ./examples/advertisement
@md5sum test.hex

smoketest-linux:
# Test on Linux.
Expand Down
2 changes: 1 addition & 1 deletion adapter_ninafw-machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

func init() {
AdapterConfig = NINAConfig{
UART: machine.NINA_UART,
UART: machine.UART_NINA,
CS: machine.NINA_CS,
ACK: machine.NINA_ACK,
GPIO0: machine.NINA_GPIO0,
Expand Down

0 comments on commit ff77523

Please sign in to comment.