mcuscope 0.1.0__py3-none-any.whl
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.
- mcuscope/__init__.py +14 -0
- mcuscope/cli.py +1733 -0
- mcuscope/config.py +246 -0
- mcuscope/daemon.py +207 -0
- mcuscope/lockfile.py +159 -0
- mcuscope/protocol.py +651 -0
- mcuscope/serial_link.py +875 -0
- mcuscope/server.py +1626 -0
- mcuscope/sim.py +705 -0
- mcuscope/store.py +1606 -0
- mcuscope/webui/api.js +260 -0
- mcuscope/webui/app.js +130 -0
- mcuscope/webui/can.js +284 -0
- mcuscope/webui/cmdbar.js +190 -0
- mcuscope/webui/digital.js +510 -0
- mcuscope/webui/index.html +268 -0
- mcuscope/webui/plots.js +744 -0
- mcuscope/webui/settings.js +416 -0
- mcuscope/webui/state.js +271 -0
- mcuscope/webui/statusbar.js +315 -0
- mcuscope/webui/style.css +332 -0
- mcuscope/webui/terminal.js +449 -0
- mcuscope/webui/theme.js +25 -0
- mcuscope/webui/vendor/uPlot.iife.min.js +2 -0
- mcuscope/webui/vendor/uPlot.min.css +1 -0
- mcuscope-0.1.0.dist-info/METADATA +122 -0
- mcuscope-0.1.0.dist-info/RECORD +30 -0
- mcuscope-0.1.0.dist-info/WHEEL +4 -0
- mcuscope-0.1.0.dist-info/entry_points.txt +4 -0
- mcuscope-0.1.0.dist-info/licenses/LICENSE +21 -0
mcuscope/__init__.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""mcuscope: host daemon and CLI for MCUscope, a hardware debug and plotting bridge.
|
|
2
|
+
|
|
3
|
+
See docs/SPEC.md for the authoritative protocol and API contract. The package is
|
|
4
|
+
split into small modules:
|
|
5
|
+
|
|
6
|
+
- protocol: pure encode/decode of the UART line protocol (no I/O).
|
|
7
|
+
- store: SQLite capture storage.
|
|
8
|
+
- serial_link: per-port serial handling, seq machinery, reconnect.
|
|
9
|
+
- server: FastAPI REST + WebSocket app.
|
|
10
|
+
- daemon: mcuscoped entry point (config load, wiring, lifecycle).
|
|
11
|
+
- cli: the mcu command-line client.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__version__ = "0.1.0"
|