mirror of
https://github.com/sixfab/Sixfab_PPP_Installer
synced 2024-11-14 15:24:52 +00:00
fixing install functions
This commit is contained in:
parent
18ea0eed3f
commit
cc99c34a5e
@ -173,6 +173,7 @@ do
|
||||
|
||||
# Devicename
|
||||
sed -i "s/DEVICE/$devicename/" jetson_configure_modem.sh
|
||||
sed -i "s/DEVICE/$devicename/" functions.sh
|
||||
|
||||
mv functions.sh $PPP_PATH
|
||||
mv configs.sh $PPP_PATH
|
||||
|
@ -10,6 +10,9 @@ CYAN='\033[0;36m'
|
||||
PURPLE='\033[0;35m'
|
||||
SET='\033[0m'
|
||||
|
||||
# default arguments
|
||||
PORT=/dev/DEVICE
|
||||
|
||||
function debug
|
||||
{
|
||||
ECHO_PARAM=${2:-''}
|
||||
@ -25,14 +28,14 @@ function check_network()
|
||||
NETWORK_OK=0
|
||||
|
||||
debug "SIM Status: " "-n" # no line break
|
||||
atcom AT+CPIN? | grep "CPIN: READY"
|
||||
atcom -p $PORT AT+CPIN? | grep "CPIN: 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
|
||||
NR_TEXT=`atcom AT+CREG? | grep "CREG:"`
|
||||
NR_TEXT=`atcom -p $PORT AT+CREG? | grep "CREG:"`
|
||||
echo $NR_TEXT
|
||||
|
||||
# For super SIM
|
||||
|
Loading…
Reference in New Issue
Block a user