9 lines
168 B
Bash
Raw Normal View History

2021-01-09 22:01:21 +01:00
#!/bin/bash
cat << EOF | nc localhost 4444
reset halt
2021-01-30 17:56:50 +01:00
flash write_image erase /home/wn/Workspaces/mains-frequency-counter-stm32/cube/build/cube.elf
2021-01-09 22:01:21 +01:00
reset run
exit
EOF