add Trassir TR-W2C1 v1

This commit is contained in:
cronyx
2024-04-29 12:26:42 +03:00
parent cba9d03d31
commit 9226123806
6 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/sh
set_gpio() {
[ "$2" -eq 1 ] && gpio set $1 || gpio clear $1
sleep 1
}
# Generic MT7601STA
if [ "$1" = "mt7601sta-generic" ]; then
modprobe mt7601sta
exit 0
fi
exit 1