mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 11:38:31 +01:00
13 lines
118 B
Bash
13 lines
118 B
Bash
#/bin/bash
|
|
#load/unload driver
|
|
|
|
count=0
|
|
S=1
|
|
while [ "$S" == "1" ]
|
|
do
|
|
./unload.sh
|
|
./load.sh
|
|
sleep 10
|
|
done
|
|
|