add Tuya GV7630-T31-PTZ

This commit is contained in:
cronyx
2024-01-16 22:27:50 +03:00
parent 41c252752f
commit 4277ce72b7
9 changed files with 2346 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#
Experimental system for building OpenIPC firmware for known devices
#

View File

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