burst-link-protocol 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.
Files changed (27) hide show
  1. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/PKG-INFO +4 -3
  2. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/pyproject.toml +1 -1
  3. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/decoder.c +1 -1
  4. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.github/dependabot.yml +0 -0
  5. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.github/workflows/pip.yml +0 -0
  6. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.github/workflows/wheel.yml +0 -0
  7. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.gitignore +0 -0
  8. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.vscode/c_cpp_properties.json +0 -0
  9. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.vscode/launch.json +0 -0
  10. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.vscode/settings.json +0 -0
  11. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/.vscode/tasks.json +0 -0
  12. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/CMakeLists.txt +0 -0
  13. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/LICENSE +0 -0
  14. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/README.md +0 -0
  15. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/ROADMAP.md +0 -0
  16. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/docs/design.drawio +0 -0
  17. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/docs/design.svg +0 -0
  18. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/burst_interface.h +0 -0
  19. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/burst_link_protocol/__init__.py +0 -0
  20. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/burst_link_protocol/main.py +0 -0
  21. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/crc.c +0 -0
  22. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/crc.h +0 -0
  23. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/encoder.c +0 -0
  24. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/src/python_bindings.cpp +0 -0
  25. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/test/test_c_validation.py +0 -0
  26. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/test/test_python_validation.py +0 -0
  27. {burst_link_protocol-1.0.1 → burst_link_protocol-1.0.2}/test/test_speed.py +0 -0
@@ -1,8 +1,9 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: burst-link-protocol
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Binary Utility for Reliable Stream Transfer (BURST) is a library for encoding and decoding binary data streams into and from a byte stream.
5
5
  Author-Email: Floris vernieuwe <floris@vernieuwe.eu>
6
+ License-File: LICENSE
6
7
  Project-URL: Repository, https://github.com/Florioo/burst-link-protocol
7
8
  Requires-Python: <4.0,>=3.10
8
9
  Requires-Dist: cobs<2.0.0,>=1.2.1
@@ -11,12 +12,12 @@ Requires-Dist: crc<8.0.0,>=7.1.0
11
12
  Requires-Dist: pytest<9.0.0,>=8.3.4
12
13
  Requires-Dist: pytest-cov<7.0.0,>=6.0.0
13
14
  Requires-Dist: pytest-benchmark<6.0.0,>=5.1.0
15
+ Provides-Extra: dev
14
16
  Requires-Dist: scikit-build-core[pyproject]<0.11.0,>=0.10.7; extra == "dev"
15
17
  Requires-Dist: nanobind<3.0.0,>=2.5.0; extra == "dev"
16
18
  Requires-Dist: pytest<9.0.0,>=8.3.4; extra == "dev"
17
19
  Requires-Dist: pytest-cov<7.0.0,>=6.0.0; extra == "dev"
18
20
  Requires-Dist: pytest-benchmark<6.0.0,>=5.1.0; extra == "dev"
19
- Provides-Extra: dev
20
21
  Description-Content-Type: text/markdown
21
22
 
22
23
  # BURST link protocol
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "burst-link-protocol"
3
- version = "1.0.1" # Choose one version reference here
3
+ version = "1.0.2" # Choose one version reference here
4
4
  description = "Binary Utility for Reliable Stream Transfer (BURST) is a library for encoding and decoding binary data streams into and from a byte stream."
5
5
  requires-python = ">=3.10,<4.0"
6
6
  authors = [
@@ -145,6 +145,6 @@ burst_packet_t burst_decoder_get_packet(burst_decoder_t *ctx)
145
145
 
146
146
  burst_packet_t packet;
147
147
  packet.data = ctx->buffer;
148
- packet.size = ctx->out_head;
148
+ packet.size = ctx->out_head-1;
149
149
  return packet;
150
150
  }