thingdone-daq 1.1.0__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.
- thingdone_daq-1.1.0/CHANGELOG.md +16 -0
- thingdone_daq-1.1.0/LICENSE +21 -0
- thingdone_daq-1.1.0/MANIFEST.in +17 -0
- thingdone_daq-1.1.0/PKG-INFO +831 -0
- thingdone_daq-1.1.0/README.md +796 -0
- thingdone_daq-1.1.0/examples/_common.py +122 -0
- thingdone_daq-1.1.0/examples/aux_input_matrix.py +1174 -0
- thingdone_daq-1.1.0/examples/calibrated_adc.py +89 -0
- thingdone_daq-1.1.0/examples/clean_shutdown.py +41 -0
- thingdone_daq-1.1.0/examples/combined_alignment.py +55 -0
- thingdone_daq-1.1.0/examples/discovery_and_selection.py +50 -0
- thingdone_daq-1.1.0/examples/gpio_channels.py +36 -0
- thingdone_daq-1.1.0/examples/interleaved_adc.py +36 -0
- thingdone_daq-1.1.0/examples/raw_adc_channels.py +43 -0
- thingdone_daq-1.1.0/examples/simulator.py +42 -0
- thingdone_daq-1.1.0/examples/status_and_loss.py +54 -0
- thingdone_daq-1.1.0/pyproject.toml +85 -0
- thingdone_daq-1.1.0/setup.cfg +4 -0
- thingdone_daq-1.1.0/src/thingdone_daq/__init__.py +485 -0
- thingdone_daq-1.1.0/src/thingdone_daq/_generated/__init__.py +1 -0
- thingdone_daq-1.1.0/src/thingdone_daq/_generated/protocol_constants.py +1244 -0
- thingdone_daq-1.1.0/src/thingdone_daq/_generated/protocol_v2_constants.py +1627 -0
- thingdone_daq-1.1.0/src/thingdone_daq/_incremental.py +262 -0
- thingdone_daq-1.1.0/src/thingdone_daq/_version.py +5 -0
- thingdone_daq-1.1.0/src/thingdone_daq/alignment.py +905 -0
- thingdone_daq-1.1.0/src/thingdone_daq/calibration.py +893 -0
- thingdone_daq-1.1.0/src/thingdone_daq/checksum.py +227 -0
- thingdone_daq-1.1.0/src/thingdone_daq/checksum_benchmark.py +363 -0
- thingdone_daq-1.1.0/src/thingdone_daq/cli.py +1470 -0
- thingdone_daq-1.1.0/src/thingdone_daq/client.py +2269 -0
- thingdone_daq-1.1.0/src/thingdone_daq/demo.py +485 -0
- thingdone_daq-1.1.0/src/thingdone_daq/diagnostics.py +1244 -0
- thingdone_daq-1.1.0/src/thingdone_daq/discovery.py +467 -0
- thingdone_daq-1.1.0/src/thingdone_daq/identity.py +176 -0
- thingdone_daq-1.1.0/src/thingdone_daq/low_level.py +142 -0
- thingdone_daq-1.1.0/src/thingdone_daq/models.py +7746 -0
- thingdone_daq-1.1.0/src/thingdone_daq/numpy.py +701 -0
- thingdone_daq-1.1.0/src/thingdone_daq/protocol.py +1404 -0
- thingdone_daq-1.1.0/src/thingdone_daq/protocol_v2.py +1351 -0
- thingdone_daq-1.1.0/src/thingdone_daq/py.typed +1 -0
- thingdone_daq-1.1.0/src/thingdone_daq/reader.py +1154 -0
- thingdone_daq-1.1.0/src/thingdone_daq/simulator.py +789 -0
- thingdone_daq-1.1.0/src/thingdone_daq/soak.py +6506 -0
- thingdone_daq-1.1.0/src/thingdone_daq/streaming.py +1029 -0
- thingdone_daq-1.1.0/src/thingdone_daq/synthetic.py +371 -0
- thingdone_daq-1.1.0/src/thingdone_daq/transport.py +726 -0
- thingdone_daq-1.1.0/src/thingdone_daq.egg-info/PKG-INFO +831 -0
- thingdone_daq-1.1.0/src/thingdone_daq.egg-info/SOURCES.txt +50 -0
- thingdone_daq-1.1.0/src/thingdone_daq.egg-info/dependency_links.txt +1 -0
- thingdone_daq-1.1.0/src/thingdone_daq.egg-info/entry_points.txt +4 -0
- thingdone_daq-1.1.0/src/thingdone_daq.egg-info/requires.txt +12 -0
- thingdone_daq-1.1.0/src/thingdone_daq.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Python SDK changelog
|
|
2
|
+
|
|
3
|
+
## 1.1.0 — first public package
|
|
4
|
+
|
|
5
|
+
- Publish the Python SDK as `thingdone-daq`, imported as `thingdone_daq`.
|
|
6
|
+
- Rename console commands to `thingdone-daq`, `thingdone-daq-demo`, and
|
|
7
|
+
`thingdone-daq-soak`.
|
|
8
|
+
- Retain the `ThingDAQ` facade, typed models, optional NumPy integration,
|
|
9
|
+
simulator, calibration formats, and firmware identity conventions.
|
|
10
|
+
- Support firmware 1.1.0 and protocol v2 with fixed 1 MHz ADC/GPIO acquisition;
|
|
11
|
+
historical simulator profiles remain available for offline regression.
|
|
12
|
+
|
|
13
|
+
Migration from the private `thingdaq-local` distribution requires updating
|
|
14
|
+
imports from `thingdaq` to `thingdone_daq` and command names as above. The
|
|
15
|
+
private package name and import alias are not shipped in this distribution.
|
|
16
|
+
See the package README for known throughput and alignment limitations.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 THING DONE LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
include MANIFEST.in
|
|
2
|
+
include LICENSE
|
|
3
|
+
include README.md
|
|
4
|
+
include CHANGELOG.md
|
|
5
|
+
include pyproject.toml
|
|
6
|
+
recursive-include src/thingdone_daq *.py
|
|
7
|
+
include src/thingdone_daq/py.typed
|
|
8
|
+
recursive-include examples *.py
|
|
9
|
+
|
|
10
|
+
# Build only the installable runtime source. The canonical protocol JSON,
|
|
11
|
+
# generator, and golden fixtures remain repository validation inputs because
|
|
12
|
+
# runtime code imports the generated Python constants directly.
|
|
13
|
+
prune tests
|
|
14
|
+
prune captures
|
|
15
|
+
prune build
|
|
16
|
+
prune dist
|
|
17
|
+
prune credentials
|