mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-12-21 23:08:53 -05:00
158d9bffda
Useful for some tests...
22 lines
237 B
Bash
Executable File
22 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Syntax: ./start.sh CPU"
|
|
exit 1;
|
|
fi
|
|
|
|
CPU=$1
|
|
|
|
echo "Polling for chip..."
|
|
while true; do
|
|
dfu-programmer $1 start
|
|
if [ $? -eq 0 ]; then
|
|
echo "Chip found. Started."
|
|
break;
|
|
fi
|
|
|
|
sleep 1
|
|
done
|
|
|
|
|