sdev 0.5.2__tar.gz → 0.5.3__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.
- {sdev-0.5.2/sdev.egg-info → sdev-0.5.3}/PKG-INFO +1 -1
- {sdev-0.5.2 → sdev-0.5.3}/pyproject.toml +1 -1
- {sdev-0.5.2 → sdev-0.5.3}/sdev/__init__.py +1 -1
- {sdev-0.5.2 → sdev-0.5.3}/sdev/cli/cli_wrapper.py +3 -0
- {sdev-0.5.2 → sdev-0.5.3/sdev.egg-info}/PKG-INFO +1 -1
- {sdev-0.5.2 → sdev-0.5.3}/setup.py +1 -1
- {sdev-0.5.2 → sdev-0.5.3}/LICENSE +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/MANIFEST.in +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/README.md +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/base/__init__.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/base/serial_core.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/cli/__init__.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/models/__init__.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/models/demoboard.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/remote/__init__.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/remote/client.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/remote/discovery.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev/remote/server.py +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev.egg-info/SOURCES.txt +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev.egg-info/dependency_links.txt +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev.egg-info/entry_points.txt +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev.egg-info/requires.txt +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/sdev.egg-info/top_level.txt +0 -0
- {sdev-0.5.2 → sdev-0.5.3}/setup.cfg +0 -0
|
@@ -472,6 +472,9 @@ def cmd_demoboard_list(args: argparse.Namespace) -> int:
|
|
|
472
472
|
if args.local:
|
|
473
473
|
return cmd_list_local(args)
|
|
474
474
|
|
|
475
|
+
# 延迟导入以避免无关子命令时的额外依赖开销。
|
|
476
|
+
from ..base.serial_core import scan_serial_ports
|
|
477
|
+
|
|
475
478
|
# 本地与远程发现阶段并行:
|
|
476
479
|
# - 线程 A:本地串口非阻塞检查(不输出);
|
|
477
480
|
# - 线程 B:远程 host 发现 + boards 列表拉取(不输出);
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|