lr-shuttle 0.2.1__tar.gz → 0.2.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.
Potentially problematic release.
This version of lr-shuttle might be problematic. Click here for more details.
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/PKG-INFO +10 -4
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/README.md +9 -3
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/pyproject.toml +1 -1
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/lr_shuttle.egg-info/PKG-INFO +10 -4
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/cli.py +710 -10
- lr_shuttle-0.2.3/src/shuttle/firmware/esp32c5/devboard.ino.bin +0 -0
- lr_shuttle-0.2.3/src/shuttle/prodtest.py +281 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/serial_client.py +9 -1
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_cli.py +701 -3
- lr_shuttle-0.2.3/tests/test_prodtest_helpers.py +147 -0
- lr_shuttle-0.2.1/src/shuttle/firmware/esp32c5/devboard.ino.bin +0 -0
- lr_shuttle-0.2.1/src/shuttle/prodtest.py +0 -120
- lr_shuttle-0.2.1/tests/test_prodtest_helpers.py +0 -56
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/setup.cfg +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/lr_shuttle.egg-info/SOURCES.txt +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/lr_shuttle.egg-info/dependency_links.txt +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/lr_shuttle.egg-info/entry_points.txt +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/lr_shuttle.egg-info/requires.txt +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/lr_shuttle.egg-info/top_level.txt +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/constants.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/firmware/__init__.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/firmware/esp32c5/__init__.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/firmware/esp32c5/boot_app0.bin +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/firmware/esp32c5/devboard.ino.bootloader.bin +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/firmware/esp32c5/devboard.ino.partitions.bin +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/firmware/esp32c5/manifest.json +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/flash.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/src/shuttle/timo.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_cli_client.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_cli_edge.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_cli_seq.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_cli_utils.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_flash.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_prodtest_edge.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_serial_client.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_timo.py +0 -0
- {lr_shuttle-0.2.1 → lr_shuttle-0.2.3}/tests/test_timo_write.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lr-shuttle
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: CLI and Python client for host-side of json based serial communication with embedded device bridge.
|
|
5
5
|
Author-email: Jonas Estberger <jonas.estberger@lumenradio.com>
|
|
6
6
|
License: MIT
|
|
@@ -247,6 +247,12 @@ Events continue to emit until you close the subscription or client, so you can a
|
|
|
247
247
|
|
|
248
248
|
| Command | Description |
|
|
249
249
|
| --- | --- |
|
|
250
|
-
| `shuttle prodtest reset` |
|
|
251
|
-
| `shuttle prodtest ping` |
|
|
252
|
-
| `shuttle prodtest io-self-test` |
|
|
250
|
+
| `shuttle prodtest reset` | Reset GPIO pins, IRQ pin and Radio |
|
|
251
|
+
| `shuttle prodtest ping` | Send '+' and expect '-' to verify SPI link |
|
|
252
|
+
| `shuttle prodtest io-self-test` | Perform GPIO self-test on pins given as argument |
|
|
253
|
+
| `shuttle prodtest antenna` | Select antenna |
|
|
254
|
+
| `shuttle prodtest continuous-tx` | Continuous transmitter test |
|
|
255
|
+
| `shuttle prodtest hw-device-id` | Read the 8-byte HW Device ID |
|
|
256
|
+
| `shuttle prodtest serial-number [--value HEX]` | Read or write the 8-byte serial number |
|
|
257
|
+
| `shuttle prodtest config [--value HEX]` | Read or write the 5-byte config payload |
|
|
258
|
+
| `shuttle prodtest erase-nvmc HW_ID` | Erase NVMC if the provided 8-byte HW ID matches |
|
|
@@ -221,6 +221,12 @@ Events continue to emit until you close the subscription or client, so you can a
|
|
|
221
221
|
|
|
222
222
|
| Command | Description |
|
|
223
223
|
| --- | --- |
|
|
224
|
-
| `shuttle prodtest reset` |
|
|
225
|
-
| `shuttle prodtest ping` |
|
|
226
|
-
| `shuttle prodtest io-self-test` |
|
|
224
|
+
| `shuttle prodtest reset` | Reset GPIO pins, IRQ pin and Radio |
|
|
225
|
+
| `shuttle prodtest ping` | Send '+' and expect '-' to verify SPI link |
|
|
226
|
+
| `shuttle prodtest io-self-test` | Perform GPIO self-test on pins given as argument |
|
|
227
|
+
| `shuttle prodtest antenna` | Select antenna |
|
|
228
|
+
| `shuttle prodtest continuous-tx` | Continuous transmitter test |
|
|
229
|
+
| `shuttle prodtest hw-device-id` | Read the 8-byte HW Device ID |
|
|
230
|
+
| `shuttle prodtest serial-number [--value HEX]` | Read or write the 8-byte serial number |
|
|
231
|
+
| `shuttle prodtest config [--value HEX]` | Read or write the 5-byte config payload |
|
|
232
|
+
| `shuttle prodtest erase-nvmc HW_ID` | Erase NVMC if the provided 8-byte HW ID matches |
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lr-shuttle"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.3"
|
|
8
8
|
description = "CLI and Python client for host-side of json based serial communication with embedded device bridge."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lr-shuttle
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: CLI and Python client for host-side of json based serial communication with embedded device bridge.
|
|
5
5
|
Author-email: Jonas Estberger <jonas.estberger@lumenradio.com>
|
|
6
6
|
License: MIT
|
|
@@ -247,6 +247,12 @@ Events continue to emit until you close the subscription or client, so you can a
|
|
|
247
247
|
|
|
248
248
|
| Command | Description |
|
|
249
249
|
| --- | --- |
|
|
250
|
-
| `shuttle prodtest reset` |
|
|
251
|
-
| `shuttle prodtest ping` |
|
|
252
|
-
| `shuttle prodtest io-self-test` |
|
|
250
|
+
| `shuttle prodtest reset` | Reset GPIO pins, IRQ pin and Radio |
|
|
251
|
+
| `shuttle prodtest ping` | Send '+' and expect '-' to verify SPI link |
|
|
252
|
+
| `shuttle prodtest io-self-test` | Perform GPIO self-test on pins given as argument |
|
|
253
|
+
| `shuttle prodtest antenna` | Select antenna |
|
|
254
|
+
| `shuttle prodtest continuous-tx` | Continuous transmitter test |
|
|
255
|
+
| `shuttle prodtest hw-device-id` | Read the 8-byte HW Device ID |
|
|
256
|
+
| `shuttle prodtest serial-number [--value HEX]` | Read or write the 8-byte serial number |
|
|
257
|
+
| `shuttle prodtest config [--value HEX]` | Read or write the 5-byte config payload |
|
|
258
|
+
| `shuttle prodtest erase-nvmc HW_ID` | Erase NVMC if the provided 8-byte HW ID matches |
|