18 lines
310 B
Makefile
18 lines
310 B
Makefile
arduino:
|
|
tinygo flash -target=arduino
|
|
|
|
esp32:
|
|
tinygo flash -target=esp32-mini32 -port=/dev/cu.usbserial-1110
|
|
|
|
odroid:
|
|
tinygo flash -target=esp32-mini32 -port=/dev/tty.SLAB_USBtoUART
|
|
|
|
xiao:
|
|
tinygo flash -target=xiao-ble
|
|
|
|
debug:
|
|
tinygo gdb -target=xiao-ble
|
|
|
|
test:
|
|
tinygo build -target=xiao-ble -o test.uf2
|