mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
64 lines
2.0 KiB
Python
64 lines
2.0 KiB
Python
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
|
|
# * contributor license agreements. See the NOTICE file distributed with
|
|
# * this work for additional information regarding copyright ownership.
|
|
# * The OpenAirInterface Software Alliance licenses this file to You under
|
|
# * the OAI Public License, Version 1.1 (the "License"); you may not use this file
|
|
# * except in compliance with the License.
|
|
# * You may obtain a copy of the License at
|
|
# *
|
|
# * http://www.openairinterface.org/?page_id=698
|
|
# *
|
|
# * Unless required by applicable law or agreed to in writing, software
|
|
# * distributed under the License is distributed on an "AS IS" BASIS,
|
|
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# * See the License for the specific language governing permissions and
|
|
# * limitations under the License.
|
|
# *-------------------------------------------------------------------------------
|
|
# * For more information about the OpenAirInterface (OAI) Software Alliance:
|
|
# * contact@openairinterface.org
|
|
# */
|
|
#---------------------------------------------------------------------
|
|
#
|
|
# Required Python Version
|
|
# Python 3.x
|
|
#
|
|
#---------------------------------------------------------------------
|
|
|
|
|
|
|
|
import sys
|
|
import time
|
|
import serial
|
|
|
|
|
|
class qtel_ctl:
|
|
def __init__(self, usb_port_at):
|
|
self.QUECTEL_USB_PORT_AT = usb_port_at #'/dev/ttyUSB2'
|
|
self.modem = serial.Serial(self.QUECTEL_USB_PORT_AT, timeout=1)
|
|
self.cmd_dict= {"wup": self.wup;"detach":self.detach}
|
|
|
|
def __set_modem_state(self,ser,state):
|
|
self.__send_command(ser,"AT+CFUN={}\r".format(state))
|
|
|
|
def __send_command(self,ser,com):
|
|
if ser.inWaiting() > 0:
|
|
ser.flushInput()
|
|
ser.write(com.encode())
|
|
|
|
|
|
def wup(self):
|
|
self.__set_modem_state(modem,0)
|
|
time.sleep(3)
|
|
self.__set_modem_state(modem,1)
|
|
|
|
def detach(self):
|
|
self.__set_modem_state(modem,0)
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
command = sys.argv[2]
|
|
Module=qtel_ctl(sys.argv[1])
|
|
Module.cmd_dict[command]()
|