mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-05-02 22:25:00 -04:00
11 lines
225 B
Bash
Executable file
11 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
iceprog -I B interface_fpga_usb.bin
|
|
echo 'Waiting 2s for USB to stabalize'
|
|
sleep 2
|
|
if lsusb -d 1d50:6159; then
|
|
echo 'device found, USB test passed'
|
|
else
|
|
echo 'device not found, USB test failed'
|
|
fi
|