Merge pull request #29 from sixfab/fix/network-reg

fix network registeration call
This commit is contained in:
Yasin Kaya 2021-02-09 23:19:47 +03:00 committed by GitHub
commit d920f6d0dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,14 +37,24 @@ function check_network()
# For super SIM # For super SIM
echo $NR_TEXT | grep "CREG: 0,5" > /dev/null echo $NR_TEXT | grep "CREG: 0,5" > /dev/null
NETWORK_REG=$? NETWORK_REG_1=$?
echo $NR_TEXT | grep "CREG: 1,5" > /dev/null
NETWORK_REG_2=$?
echo $NR_TEXT | grep "CREG: 2,5" > /dev/null
NETWORK_REG_3=$?
# For native SIM # For native SIM
echo $NR_TEXT | grep "CREG: 0,1" > /dev/null echo $NR_TEXT | grep "CREG: 0,1" > /dev/null
NETWORK_REG_2=$? NETWORK_REG_4=$?
# Combined network registration status echo $NR_TEXT | grep "CREG: 1,1" > /dev/null
NETWORK_REG=$((NETWORK_REG+NETWORK_REG_2)) NETWORK_REG_5=$?
echo $NR_TEXT | grep "CREG: 2,1" > /dev/null
NETWORK_REG_6=$?
if [[ $SIM_READY -eq 0 ]] && [[ $NETWORK_REG -le 1 ]]; then # Combined network registration status
NETWORK_REG=$((NETWORK_REG_1 & NETWORK_REG_2 & NETWORK_REG_3 & NETWORK_REG_4 & NETWORK_REG_5 & NETWORK_REG_6))
if [[ $SIM_READY -eq 0 ]] && [[ $NETWORK_REG -eq 0 ]]; then
debug "Network is ready." debug "Network is ready."
NETWORK_OK=1 NETWORK_OK=1
return 0 return 0