fixing install functions

This commit is contained in:
Droid Sitebots 2021-05-25 09:04:38 +02:00
parent 18ea0eed3f
commit cc99c34a5e
2 changed files with 7 additions and 3 deletions

View File

@ -173,6 +173,7 @@ do
# Devicename # Devicename
sed -i "s/DEVICE/$devicename/" jetson_configure_modem.sh sed -i "s/DEVICE/$devicename/" jetson_configure_modem.sh
sed -i "s/DEVICE/$devicename/" functions.sh
mv functions.sh $PPP_PATH mv functions.sh $PPP_PATH
mv configs.sh $PPP_PATH mv configs.sh $PPP_PATH

View File

@ -10,6 +10,9 @@ CYAN='\033[0;36m'
PURPLE='\033[0;35m' PURPLE='\033[0;35m'
SET='\033[0m' SET='\033[0m'
# default arguments
PORT=/dev/DEVICE
function debug function debug
{ {
ECHO_PARAM=${2:-''} ECHO_PARAM=${2:-''}
@ -25,14 +28,14 @@ function check_network()
NETWORK_OK=0 NETWORK_OK=0
debug "SIM Status: " "-n" # no line break debug "SIM Status: " "-n" # no line break
atcom AT+CPIN? | grep "CPIN: READY" atcom -p $PORT AT+CPIN? | grep "CPIN: READY"
SIM_READY=$? SIM_READY=$?
if [[ $SIM_READY -ne 0 ]]; then atcom AT+CPIN? | grep "CPIN:"; fi if [[ $SIM_READY -ne 0 ]]; then atcom -p $PORT AT+CPIN? | grep "CPIN:"; fi
debug "Network Registration Status: " "-n" # no line break debug "Network Registration Status: " "-n" # no line break
NR_TEXT=`atcom AT+CREG? | grep "CREG:"` NR_TEXT=`atcom -p $PORT AT+CREG? | grep "CREG:"`
echo $NR_TEXT echo $NR_TEXT
# For super SIM # For super SIM