20 lines
305 B
Bash
Executable File
20 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "
|
|
sleep 10
|
|
reset halt
|
|
wait_halt
|
|
mww 0xfffffd08 0xa5000001
|
|
sleep 10
|
|
arm7_9 sw_bkpts disable
|
|
arm7_9 force_hw_bkpts enable
|
|
arm7_9 dcc_downloads enable
|
|
sleep 10
|
|
flash probe 0
|
|
flash info 0
|
|
flash auto_erase on
|
|
flash write_image build/sam7fc.elf
|
|
sleep 10
|
|
reset run
|
|
exit" | nc localhost 4444
|