13 lines
263 B
Makefile
13 lines
263 B
Makefile
|
xiao: flash
|
||
|
|
||
|
prepare:
|
||
|
./flashing_time.py
|
||
|
|
||
|
flash:
|
||
|
tinygo flash -target=xiao-ble -size=short
|
||
|
|
||
|
production:
|
||
|
tinygo flash -target=xiao-ble -serial=none -size=short
|
||
|
|
||
|
testing:
|
||
|
tinygo flash -target=xiao-ble -serial=none -size=short -opt=2 -gc=leaking -scheduler=tasks
|