taotoolkit 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/PKG-INFO +1 -1
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/pyproject.toml +1 -1
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_flash.py +2 -2
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_tuning.py +3 -3
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit.egg-info/PKG-INFO +1 -1
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/README.md +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/setup.cfg +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/__init__.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/asrVrf.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_camDvt.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_cmdTool.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_common.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_device.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit/tao_vrfTool.py +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit.egg-info/SOURCES.txt +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit.egg-info/dependency_links.txt +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit.egg-info/requires.txt +0 -0
- {taotoolkit-1.0.1 → taotoolkit-1.0.2}/taotoolkit.egg-info/top_level.txt +0 -0
|
@@ -56,7 +56,7 @@ class jenkinsTool:
|
|
|
56
56
|
self.downloadPath = "/home/local/Downloads/jenkin" # 下载路径和解压路径
|
|
57
57
|
self.extractPath = "/home/local/Downloads/jenkin"
|
|
58
58
|
self.aimgTool = "aimgtool"
|
|
59
|
-
|
|
59
|
+
else:
|
|
60
60
|
self.downloadPath = r"D:\jenkin" # 下载路径和解压路径
|
|
61
61
|
self.extractPath = r"D:\jenkin"
|
|
62
62
|
self.aimgTool = "aimgtool.exe"
|
|
@@ -637,7 +637,7 @@ class jenkinsTool:
|
|
|
637
637
|
cmd = ""
|
|
638
638
|
if sysVersion == "Linux":
|
|
639
639
|
cmd = f"./{self.aimgTool} download -t {finalCfg}"
|
|
640
|
-
|
|
640
|
+
else:
|
|
641
641
|
cmd = f"{self.aimgTool} download -t {finalCfg}"
|
|
642
642
|
logi(cmd)
|
|
643
643
|
oCmd(cmd)
|
|
@@ -542,7 +542,7 @@ class asrCamOp(DevOp):
|
|
|
542
542
|
super().__init__(**kwargs)
|
|
543
543
|
if sysVersion == "Linux":
|
|
544
544
|
self.tuning_assistant = "tuning_assistant64.out"
|
|
545
|
-
|
|
545
|
+
else:
|
|
546
546
|
self.tuning_assistant = "tuning_assistant64.exe"
|
|
547
547
|
self.soc = self.getASRDevice()
|
|
548
548
|
self.lcdOnAndUnlock()
|
|
@@ -654,7 +654,7 @@ class asrCamOp(DevOp):
|
|
|
654
654
|
out = rCmd("ifconfig")[0]
|
|
655
655
|
ip = out.split("\n")[1].strip().split(" ")[1]
|
|
656
656
|
logi(f"{ip} : 12218")
|
|
657
|
-
|
|
657
|
+
else:
|
|
658
658
|
loge("windows unsupport")
|
|
659
659
|
return
|
|
660
660
|
else:
|
|
@@ -672,7 +672,7 @@ class asrCamOp(DevOp):
|
|
|
672
672
|
splitCmd=False,
|
|
673
673
|
)
|
|
674
674
|
rCmd(f"adb -s {self.serial} forward --remove tcp:10000", showCmd=True, logLevel="info")
|
|
675
|
-
|
|
675
|
+
else:
|
|
676
676
|
self.resetNet()
|
|
677
677
|
rCmd(f"adb -s {self.serial} forward --remove tcp:10000")
|
|
678
678
|
rCmd("netsh interface portproxy reset", showRet=False)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|