Commit 8b3eb61f authored by hardy's avatar hardy

fixing typos + more in-code comments

parent 2724f9c1
...@@ -62,11 +62,13 @@ class CotsUe: ...@@ -62,11 +62,13 @@ class CotsUe:
#load cots commands dictionary #load cots commands dictionary
with open(self.__cots_cde_dict_file,'r') as file: with open(self.__cots_cde_dict_file,'r') as file:
cots_ue_ctl = yaml.load(file,Loader=yaml.FullLoader) cots_ue_ctl = yaml.load(file,Loader=yaml.FullLoader)
#check if ue id is in the dictionary
if target_id in cots_ue_ctl: if target_id in cots_ue_ctl:
mySSH = sshconnection.SSHConnection() mySSH = sshconnection.SSHConnection()
mySSH.open(self.ADBIPAddr, self.ADBUserName, self.ADBPassWord) mySSH.open(self.ADBIPAddr, self.ADBUserName, self.ADBPassWord)
mySSH.command('sudo adb start-server','$',5) mySSH.command('sudo adb start-server','\$',5)
logging.info("Toggling COTS UE Airplane mode to : "+target_state_str) logging.info("Toggling COTS UE Airplane mode to : "+target_state_str)
#get current state
current_state = self.Check_Airplane() current_state = self.Check_Airplane()
if target_state_str.lower()=="on": if target_state_str.lower()=="on":
target_state=1 target_state=1
...@@ -82,13 +84,15 @@ class CotsUe: ...@@ -82,13 +84,15 @@ class CotsUe:
time.sleep(1) time.sleep(1)
current_state = self.Check_Airplane() current_state = self.Check_Airplane()
retry+=1 retry+=1
#could not toggle despite the retry
if current_state != target_state: if current_state != target_state:
logging.error("ATTENTION : Could not toggle to : "+target_state_str) logging.error("ATTENTION : Could not toggle to : "+target_state_str)
logging.error("Current state is : "+ str(current_state)) logging.error("Current state is : "+ str(current_state))
else: else:
print("Airplane mode is already "+ target_state_str) print("Airplane mode is already "+ target_state_str)
mySSH.command('sudo adb kill-server','$',5) mySSH.command('sudo adb kill-server','\$',5)
mySSH.close() mySSH.close()
#ue id is NOT in the dictionary
else: else:
logging.error("COTS UE Id from XML could not be found in UE YAML dictionary " + self.__cots_cde_dict_file) logging.error("COTS UE Id from XML could not be found in UE YAML dictionary " + self.__cots_cde_dict_file)
sys.exit("COTS UE Id from XML could not be found in UE YAML dictionary " + self.__cots_cde_dict_file) sys.exit("COTS UE Id from XML could not be found in UE YAML dictionary " + self.__cots_cde_dict_file)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment