pyxcp 0.23.3__cp312-cp312-win_amd64.whl → 0.23.6__cp312-cp312-win_amd64.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.

Potentially problematic release.


This version of pyxcp might be problematic. Click here for more details.

@@ -0,0 +1,339 @@
1
+ Metadata-Version: 2.3
2
+ Name: pyxcp
3
+ Version: 0.23.6
4
+ Summary: Universal Calibration Protocol for Python
5
+ License: LGPLv3
6
+ Keywords: automotive,ecu,xcp,asam,autosar
7
+ Author: Christoph Schueler
8
+ Author-email: cpu.gems@googlemail.com
9
+ Requires-Python: >=3.10,<4.0
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
13
+ Classifier: License :: Other/Proprietary License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Topic :: Scientific/Engineering
21
+ Classifier: Topic :: Software Development
22
+ Requires-Dist: bandit (>=1.7.8,<2.0.0)
23
+ Requires-Dist: chardet (>=5.2.0,<6.0.0)
24
+ Requires-Dist: construct (>=2.10.68,<3.0.0)
25
+ Requires-Dist: line-profiler-pycharm (>=1.1.0,<2.0.0)
26
+ Requires-Dist: mako (>=1.2.4,<2.0.0)
27
+ Requires-Dist: pyserial (>=3.5,<4.0)
28
+ Requires-Dist: python-can (>=4.2.2,<5.0.0)
29
+ Requires-Dist: pytz (>=2025.2,<2026.0)
30
+ Requires-Dist: pyusb (>=1.2.1,<2.0.0)
31
+ Requires-Dist: rich (>=14.0.0,<15.0.0)
32
+ Requires-Dist: toml (>=0.10.2,<0.11.0)
33
+ Requires-Dist: tomlkit (>=0.13.3,<0.14.0)
34
+ Requires-Dist: traitlets (<=5.11.2)
35
+ Requires-Dist: uptime (>=3.0.1,<4.0.0)
36
+ Project-URL: Homepage, https://github.com/christoph2/pyxcp
37
+ Description-Content-Type: text/x-rst
38
+
39
+ Readme
40
+ ======
41
+
42
+ .. image:: pyxcp_social.jpg
43
+ :align: center
44
+
45
+ Reliable Python tooling for the ASAM MCD-1 XCP protocol (measurement,
46
+ calibration, flashing) with multiple transports (CAN, Ethernet, USB,
47
+ Serial) and handy CLI utilities.
48
+
49
+ |PyPI| |Python Versions| |License: LGPL v3+| |Code style: black|
50
+
51
+ ``pyXCP`` is a production-ready Python library for communicating with
52
+ XCP-enabled devices, most commonly automotive ECUs. Use it to take
53
+ measurements, adjust parameters (calibration), stream DAQ/STIM, and
54
+ program devices during development.
55
+
56
+ Highlights:
57
+
58
+ - Transports: Ethernet (TCP/IP), CAN, USB, Serial (SxI)
59
+ - Cross-platform: Windows, Linux, macOS
60
+ - Rich CLI tools for common XCP tasks
61
+ - Extensible architecture and layered design
62
+
63
+ --------------
64
+
65
+ Installation
66
+ ------------
67
+
68
+ The easiest way is from PyPI:
69
+
70
+ .. code:: shell
71
+
72
+ pip install pyxcp
73
+
74
+ To install from the main branch:
75
+
76
+ .. code:: shell
77
+
78
+ pip install git+https://github.com/christoph2/pyxcp.git
79
+
80
+ Requirements
81
+ ~~~~~~~~~~~~
82
+
83
+ - Python >= 3.10
84
+ - Building from source requires a working C/C++ toolchain (native
85
+ extensions are used for performance). Wheels are provided for common
86
+ platforms and Python versions; if a wheel is not available, pip will
87
+ build from source.
88
+ - An XCP slave device (or simulator)
89
+
90
+ Quick start
91
+ -----------
92
+
93
+ The tutorial walks you through typical tasks end-to-end: see `tutorial <tutorial.rst>`_.
94
+
95
+ Minimal example using the built-in argument parser and context manager:
96
+
97
+ .. code:: python
98
+
99
+ from pyxcp.cmdline import ArgumentParser
100
+
101
+ ap = ArgumentParser(description="pyXCP hello world")
102
+
103
+ with ap.run() as x:
104
+ x.connect()
105
+ identifier = x.identifier(0x01)
106
+ print(f"ID: {identifier!r}")
107
+ print(x.slaveProperties)
108
+ x.disconnect()
109
+
110
+ Configuration
111
+ ~~~~~~~~~~~~~
112
+
113
+ ``pyXCP`` supports a
114
+ `traitlets <https://github.com/ipython/traitlets>`__\-based configuration system.
115
+
116
+ - Recommended Python config example and generator: `tutorial <tutorial.rst>`__ and `configuration <configuration.rst>`__
117
+ - Legacy TOML examples remain available for compatibility.
118
+
119
+ Command‑line tools
120
+ ~~~~~~~~~~~~~~~~~~
121
+
122
+ Installed entry points (see pyproject.toml):
123
+
124
+ - xcp-info — print capabilities and properties
125
+ - xcp-id-scanner — scan for slave identifiers
126
+ - xcp-fetch-a2l — retrieve A2L from target (if supported)
127
+ - xcp-profile — generate/convert config files
128
+ - xcp-examples — launch assorted demos/examples
129
+ - xmraw-converter — convert recorder .xmraw data
130
+ - pyxcp-probe-can-drivers — list available CAN interfaces
131
+
132
+ Run any tool with -h for options.
133
+
134
+ Features
135
+ --------
136
+
137
+ - Multiple transport layers: Ethernet (TCP), CAN, USB, SxI (serial/UART)
138
+ - Data Acquisition (DAQ) and Stimulation (STIM)
139
+ - Calibration (read/write parameters)
140
+ - Flashing/programming workflows
141
+ - A2L (ASAM MCD‑2 MC) support
142
+ - Recorder utilities and converters (see `recorder <recorder.rst>`__)
143
+ - Extensible architecture for custom transports
144
+
145
+ Documentation
146
+ -------------
147
+
148
+ - Getting started tutorial: `tutorial <tutorial.rst>`__
149
+ - Configuration: `configuration <configuration.rst>`__
150
+ - CAN driver setup and troubleshooting: `howto_can_driver <howto_can_driver.rst>`__
151
+ - Recorder: `recorder <recorder.rst>`__
152
+ - Troubleshooting: `troubleshooting <troubleshooting.rst>`__
153
+ - Troubleshooting matrix (common errors, root causes, fixes):
154
+ `troubleshooting_matrix <troubleshooting_matrix.rst>`__
155
+
156
+ To build the Sphinx documentation locally:
157
+
158
+ 1. Install doc requirements:
159
+ ``pip install -r docs/requirements.txt``
160
+ 2. Build:
161
+ ``sphinx-build -b html docs docs/_build/html``
162
+ 3. Open
163
+ ``docs/_build/html/index.html``
164
+
165
+ Compatibility
166
+ -------------
167
+
168
+ - Operating systems: Windows, Linux, macOS
169
+ - Python: 3.10 - 3.14, CPython wheels where available
170
+ - CAN backends: python-can compatible drivers (see `howto_can_driver <howto_can_driver.rst>`__)
171
+
172
+ Contributing
173
+ ------------
174
+
175
+ Contributions are welcome! Please: - Read `CODE_OF_CONDUCT <../CODE_OF_CONDUCT.md>`__ - Open an
176
+ issue or discussion before large changes - Use
177
+ `pre-commit <https://github.com/pre-commit/pre-commit>`__ to run linters
178
+ and tests locally
179
+
180
+ License
181
+ -------
182
+
183
+ GNU Lesser General Public License v3 or later (LGPLv3+). See LICENSE for
184
+ details.
185
+
186
+ References
187
+ ----------
188
+
189
+ - ASAM MCD‑1 XCP standard:
190
+ https://www.asam.net/standards/detail/mcd-1-xcp/
191
+
192
+ About ASAM MCD‑1 XCP
193
+ --------------------
194
+
195
+ XCP (Universal Measurement and Calibration Protocol) is an ASAM standard
196
+ defining a vendor‑neutral protocol to access internal data of electronic
197
+ control units (ECUs) for measurement, calibration (parameter tuning),
198
+ and programming. XCP decouples the protocol from the physical transport,
199
+ so the same command set can be carried over different buses such as CAN,
200
+ FlexRay, Ethernet, USB, or Serial.
201
+
202
+ - Roles: An XCP Master (this library) communicates with an XCP Slave
203
+ (your device/ECU or simulator).
204
+ - Layered concept: XCP defines an application layer and transport
205
+ layers. ``pyXCP`` implements the application layer and multiple transport
206
+ bindings.
207
+ - Use cases:
208
+
209
+ - Measurement: Read variables from the ECU in real‑time, including
210
+ high‑rate DAQ streaming.
211
+ - Calibration: Read/write parameters (calibration data) in RAM/flash.
212
+ - Programming: Download new program/data to flash (where the slave
213
+ supports it).
214
+
215
+ For the authoritative description, see the ASAM page:
216
+ https://www.asam.net/standards/detail/mcd-1-xcp/
217
+
218
+ XCP in a nutshell
219
+ -----------------
220
+
221
+ - Connect/Session: The master establishes a connection, negotiates
222
+ capabilities/features, and optionally unlocks protected functions via
223
+ seed & key.
224
+ - Addressing: Memory is accessed via absolute or segment‑relative
225
+ addresses. Addressing modes are described in the associated A2L file
226
+ (ASAM MCD‑2 MC), which maps symbolic names to addresses, data types,
227
+ and conversion rules.
228
+ - Events: The slave exposes events (e.g., “1 ms task”, “Combustion
229
+ cycle”), which trigger DAQ sampling. The master assigns signals (ODTs)
230
+ to these events for time‑aligned acquisition.
231
+ - DAQ/STIM: DAQ = Data Acquisition (slave → master), STIM = Stimulation
232
+ (master → slave). Both use event‑driven lists for deterministic
233
+ timing.
234
+ - Timestamps: DAQ may carry timestamps from the slave for precise time
235
+ correlation.
236
+ - Security: Access to sensitive commands (e.g., programming,
237
+ calibration) can be protected by a seed & key algorithm negotiated at
238
+ runtime.
239
+ - Checksums: XCP defines checksum services useful for verifying memory
240
+ regions (e.g., after flashing).
241
+
242
+ Relation to A2L (ASAM MCD‑2 MC)
243
+ -------------------------------
244
+
245
+ While XCP defines the protocol, the A2L file describes the measurement
246
+ and calibration objects (characteristics, measurements), data types,
247
+ conversion rules, and memory layout. In practice, you use ``pyXCP`` together
248
+ with an A2L to: - Resolve symbolic names to addresses and data types. -
249
+ Configure DAQ lists from human‑readable signal names. - Interpret raw
250
+ values using the appropriate conversion methods.
251
+
252
+ ``pyXCP`` provides utilities to fetch A2L data when supported by the slave
253
+ and to work with A2L‑described objects. See also
254
+ `pya2ldb <https://github.com/christoph2/pya2l>`__!
255
+
256
+ Transports and addressing
257
+ -------------------------
258
+
259
+ XCP is transport‑agnostic. ``pyXCP`` supports multiple transports and
260
+ addressing schemes: - CAN (XCP on CAN): Robust and ubiquitous in
261
+ vehicles; limited payload and bandwidth; suited for many calibration
262
+ tasks and moderate DAQ rates. - Ethernet (XCP on TCP/UDP): High
263
+ bandwidth with low latency; well suited for rich DAQ and programming
264
+ workflows. - USB: High throughput for lab setups; requires device
265
+ support. - Serial/SxI: Simple point‑to‑point links for embedded targets
266
+ and simulators.
267
+
268
+ The exact capabilities (e.g., max CTO/DTO, checksum types, timestamping)
269
+ are negotiated at connect time and depend on the slave and transport.
270
+
271
+ Supported features (overview)
272
+ -----------------------------
273
+
274
+ The scope of features depends on the connected slave. At the library
275
+ level, ``pyXCP`` provides: - Session management: CONNECT/DISCONNECT,
276
+ GET_STATUS/SLAVE_PROPERTIES, communication mode setup, error handling. -
277
+ Memory access: Upload/short upload, Download/Download Next,
278
+ verifications, optional paged memory where supported. - DAQ/STIM:
279
+ Configuration of DAQ lists/ODTs, event assignment, data streaming,
280
+ timestamp handling when available. - Programming helpers: Building
281
+ blocks for program/erase/write flows (exact sequence per slave’s flash
282
+ algorithm and A2L description). - Security/Seed & Key: Pluggable
283
+ seed‑to‑key resolution including 32↔64‑bit bridge on Windows. -
284
+ Utilities: Identifier scanning, A2L helpers, recorder and converters.
285
+
286
+ Refer to `tutorial <tutorial.rst>`__ and `configuration <configuration.rst>`__ for feature usage,
287
+ and xcp-info for a capability dump of your target.
288
+
289
+ Compliance and versions
290
+ -----------------------
291
+
292
+ ``pyXCP`` aims to be compatible with commonly used parts of ASAM MCD‑1 XCP.
293
+ Specific optional features are enabled when a slave advertises them
294
+ during CONNECT. Because implementations vary across vendors and ECU
295
+ projects, always consult your A2L and use xcp-info to confirm negotiated
296
+ options (e.g., checksum type, timestamp unit, max DTO size, address
297
+ granularity).
298
+
299
+ If you rely on a particular XCP feature/profile not mentioned here,
300
+ please open an issue with details about your slave and A2L so we can
301
+ clarify support and—if feasible—add coverage.
302
+
303
+ Safety, performance, and limitations
304
+ ------------------------------------
305
+
306
+ - Safety‑critical systems: XCP is a development and testing protocol. Do
307
+ not enable measurement/calibration on safety‑critical systems in the
308
+ field unless your system‑level safety case covers it.
309
+ - Performance: Achievable DAQ rates depend on transport bandwidth, ECU
310
+ event rates, DTO sizes, and host processing. Ethernet typically yields
311
+ the highest throughput.
312
+ - Latency/jitter: Event scheduling in the slave and OS scheduling on the
313
+ host can affect determinism. Use timestamps to correlate data
314
+ precisely.
315
+ - Access control: Seed & key protects sensitive functions; your
316
+ organization’s policy should govern algorithm distribution and access.
317
+
318
+ Further resources
319
+ -----------------
320
+
321
+ - ASAM MCD‑1 XCP standard (overview and membership):
322
+ https://www.asam.net/standards/detail/mcd-1-xcp/
323
+ - ASAM MCD‑2 MC (A2L) for object descriptions:
324
+ https://www.asam.net/standards/detail/mcd-2-mc/
325
+ - Introduction to DAQ/STIM concepts (ASAM publications and vendor docs)
326
+ - Related: CCP (legacy predecessor to XCP), ASAM MDF for measurement
327
+ data storage
328
+
329
+ .. |CI| image:: https://github.com/christoph2/pyxcp/workflows/Python%20application/badge.svg
330
+ :target: https://github.com/christoph2/pyxcp/actions
331
+ .. |PyPI| image:: https://img.shields.io/pypi/v/pyxcp.svg
332
+ :target: https://pypi.org/project/pyxcp/
333
+ .. |Python Versions| image:: https://img.shields.io/pypi/pyversions/pyxcp.svg
334
+ :target: https://pypi.org/project/pyxcp/
335
+ .. |License: LGPL v3+| image:: https://img.shields.io/badge/License-LGPL%20v3%2B-blue.svg
336
+ :target: https://www.gnu.org/licenses/lgpl-3.0
337
+ .. |Code style: black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
338
+ :target: https://github.com/psf/black
339
+
@@ -1,4 +1,4 @@
1
- pyxcp/__init__.py,sha256=fVDaHDWZ31NkogpcyWKgMLiQBK356XczUnYPRUcrLAo,547
1
+ pyxcp/__init__.py,sha256=cKwvjkza3PI5t5AnNl5A42Zjd4wqGuUgsWsSWF_ZFY0,547
2
2
  pyxcp/aml/EtasCANMonitoring.a2l,sha256=EJYwe3Z3H24vyWAa6lUgcdKnQY8pwFxjyCN6ZU1ST8w,1509
3
3
  pyxcp/aml/EtasCANMonitoring.aml,sha256=xl0DdyeiIaLW0mmmJNAyJS0CQdOLSxt9dxfgrdSlU8Y,2405
4
4
  pyxcp/aml/ifdata_CAN.a2l,sha256=NCUnCUEEgRbZYSLGtUGwL2e7zJ8hrp0SbmLHGv8uY58,612
@@ -17,30 +17,30 @@ pyxcp/asam/types.py,sha256=_gKcpBF5mon_SDWZBUW0PGBMcb37yrvhhEuk1wslg-s,2441
17
17
  pyxcp/asamkeydll.c,sha256=dVEvU0S1kgIo62S0La-T8xHSw668LM_DYc_fiQ0No6g,2952
18
18
  pyxcp/asamkeydll.sh,sha256=DC2NKUMwvi39OQgJ6514Chr4wc1LYbTmQHmMq9jAHHs,59
19
19
  pyxcp/checksum.py,sha256=hO2JW_eiO9I0A4eiqovMV9d_y5oidq_w8jKdAE4FeOo,11899
20
- pyxcp/cmdline.py,sha256=4kNHOjbA0HeVfRicnFDeX1J9EBkTlA7KWL5SDfwbbaM,2525
21
- pyxcp/config/__init__.py,sha256=z9bXNb2Hp-h2ZtASCyGk3JWP3OGoOL5Hmvazl-L_ANE,45258
20
+ pyxcp/cmdline.py,sha256=FrVp7G5ORj92h7LWPfoqAzdaoW2etiui5MvCN1F6cRw,2537
21
+ pyxcp/config/__init__.py,sha256=rG-HPWJMPbxs6fu4-TpV4Gbctg7Nz9Jmogm6FMPSqlY,48274
22
22
  pyxcp/config/legacy.py,sha256=4QdDheX8DbBKv5JVT72_C_cjCgKvZmhN3tJ6hsvBEtI,5220
23
23
  pyxcp/constants.py,sha256=9yGfujC0ImTYQWfn41wyw8pluJTSrhMGWIVeIZTgsLg,1160
24
24
  pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  pyxcp/cpp_ext/bin.hpp,sha256=PwJloZek21la-RBSda2Hc0u_6gID0sfTduPeplaAyR4,2561
26
26
  pyxcp/cpp_ext/blockmem.hpp,sha256=ysaJwmTWGTfE54Outk3gJYOfAVFd_QaonBMtXLcXwCc,1242
27
- pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd,sha256=DnSJWDFdj1sm90iV3sEQx8nbkUIKDVRXw8ds113cKKw,288768
28
- pyxcp/cpp_ext/cpp_ext.cp311-win_amd64.pyd,sha256=nZzaLOhg6Q3vj2xlETL-oQ1ujBeLMlxcapRUK4EKB-8,290816
29
- pyxcp/cpp_ext/cpp_ext.cp312-win_amd64.pyd,sha256=nXFMOQ0eISY57I-D6hQHeUfxgDMsaf2-Cpy0xBw4eII,295424
27
+ pyxcp/cpp_ext/cpp_ext.cp310-win_amd64.pyd,sha256=EEu-_58xl3CIYtjIkp85u0gIO544xleMXR-JSNLEaaM,288768
28
+ pyxcp/cpp_ext/cpp_ext.cp311-win_amd64.pyd,sha256=Ku0Ywruf3Z1WFc9tU_ttu2BUZAaSwk0s2IhbFCfkkxA,290816
29
+ pyxcp/cpp_ext/cpp_ext.cp312-win_amd64.pyd,sha256=Ul7V3v_0lxjQUU4IwsZkNXga3OXISDoZEDkB4OQTWAI,295424
30
30
  pyxcp/cpp_ext/daqlist.hpp,sha256=g2hlxgoQorAGKHedZFZ0c2FQh1APMIA9sVB6M6hD_n8,7277
31
31
  pyxcp/cpp_ext/event.hpp,sha256=Z-1yxsEKsr81NnLVEWJ2ANA8FV7YsM7EbNxaw-elheE,1200
32
32
  pyxcp/cpp_ext/extension_wrapper.cpp,sha256=xFs3IcrvHPHA82-n11WPzt8HATGqcks02p84SjQ2BKM,4855
33
33
  pyxcp/cpp_ext/helper.hpp,sha256=ONAsVupIqqmNDp8bgGWS0TfSYeCFkk3kwwZbbqsh0HQ,7813
34
34
  pyxcp/cpp_ext/mcobject.hpp,sha256=A5GKcfjYMcfm3hfTQfFuS4JYNFTvfmzAcMXCe01GOs4,6429
35
35
  pyxcp/cpp_ext/tsqueue.hpp,sha256=FWMemzXNgV5dQ7gYmTCzC0QYfgl0VI9JCybYelBcCHU,1026
36
- pyxcp/daq_stim/__init__.py,sha256=2KsvP9RUV5gwFKTA1BBgsppAegR13ykrqjRtgY0zAx4,9560
36
+ pyxcp/daq_stim/__init__.py,sha256=WdY-TlClBSde44gigp4LufGQUpxR78lxH-JBSjTymsE,12462
37
37
  pyxcp/daq_stim/optimize/__init__.py,sha256=FUWK0GkNpNT-sUlhibp7xa2aSYpm6Flh5yA2w2IOJqg,2520
38
38
  pyxcp/daq_stim/optimize/binpacking.py,sha256=Iltho5diKlJG-ltbmx053U2vOFRlCISolXK61T14l_I,1257
39
39
  pyxcp/daq_stim/scheduler.cpp,sha256=NuNkAz3Dv849f51_T36YPck2dl-YsdDdG-cozc7XN9U,1504
40
40
  pyxcp/daq_stim/scheduler.hpp,sha256=U_6tUbebmzX5vVZS0EFSgTaPsyxMg6yRXHG_aPWA0x4,1884
41
- pyxcp/daq_stim/stim.cp310-win_amd64.pyd,sha256=jzG2SA5yhxvEOe_Rztm5s3_1giPtEl8WAMxdDu-65pk,208896
42
- pyxcp/daq_stim/stim.cp311-win_amd64.pyd,sha256=BlIYDELUmxBFneVVrOP9d0DCaGaVidX1mnnp2M-Zu7M,210432
43
- pyxcp/daq_stim/stim.cp312-win_amd64.pyd,sha256=oYTn7_qL1-RCquj6PwEnHI-jeH_38PiScnp6HZniSgE,214528
41
+ pyxcp/daq_stim/stim.cp310-win_amd64.pyd,sha256=OimRfMTLykwZXHXuMcDLIDvi9yk-ScOKJE4kuhY7Usg,208896
42
+ pyxcp/daq_stim/stim.cp311-win_amd64.pyd,sha256=JF3ZKiRpe3eIooRfUfWykIK4acc3aqi8osNeNuHJ3g4,210432
43
+ pyxcp/daq_stim/stim.cp312-win_amd64.pyd,sha256=3sG_6ZVnXTXdjPUYhQ96Vjk0_5XJeL1shTkAqDfVFws,214528
44
44
  pyxcp/daq_stim/stim.cpp,sha256=F2OG67W4KKwTTiUCxm-9egIv3TLFdOkRunX6xf7YOtc,177
45
45
  pyxcp/daq_stim/stim.hpp,sha256=U-uInRrA6OCdMl1l1SWbQ_KEPpnNYrWut924IvbW6R0,18508
46
46
  pyxcp/daq_stim/stim_wrapper.cpp,sha256=iT2yxJ3LRG7HoYC1bwhM3tCAxF9X_HHierBNsLRmTJg,1995
@@ -55,7 +55,7 @@ pyxcp/examples/conf_nixnet.json,sha256=BvXPrljPGzaRTNPch3K0XfU3KSBP1sVDDNP7yY850
55
55
  pyxcp/examples/conf_socket_can.toml,sha256=gTacQGm0p6fhPCMWC3ScLq9Xj-xJmNbjNXkjO4o7r8k,269
56
56
  pyxcp/examples/conf_sxi.json,sha256=cXwNGoOpvqhdjXBQcE8lKgTs50wi9beosWKskZGJ-nI,158
57
57
  pyxcp/examples/conf_sxi.toml,sha256=t-XsgRljcMdj0f3_CGRT60c77LeQPNbjIT17YxDK3Yg,125
58
- pyxcp/examples/run_daq.py,sha256=osUkVyYiA2f1cTflqbwMdrxgyfXVJ7LmpHt3u68iyQU,5624
58
+ pyxcp/examples/run_daq.py,sha256=T91EmIVC2CS7vU4IlCzNcxNzkD1AGOWmBGMXklR6g0w,5631
59
59
  pyxcp/examples/xcp_policy.py,sha256=io9tS2W-7PvR8ZzU203KolFrDp67eorUlwNWvA4kC5k,1921
60
60
  pyxcp/examples/xcp_read_benchmark.py,sha256=zOG0Yrji10vA0vhHa27KK7zgc3JDpzXzXsFnIU4C_AM,956
61
61
  pyxcp/examples/xcp_skel.py,sha256=YXLQC8nn8aAwYSVuBGhr1dvmdMBjmO1Ee1w3e5sy16s,1159
@@ -64,10 +64,10 @@ pyxcp/examples/xcp_user_supplied_driver.py,sha256=9fFiud6sbjkBjxmcdGwIO6yBc83sUy
64
64
  pyxcp/examples/xcphello.py,sha256=TAFCRf9Cg5uc-WGaxdHHUS_hKYkWqt77-3j9gGG6GW8,2628
65
65
  pyxcp/examples/xcphello_recorder.py,sha256=QHWJsq5h5CI9t5qEmMSorZyzirTpoXz4nzuKTMzbZCA,3409
66
66
  pyxcp/master/__init__.py,sha256=QQbkUJM1WQ-5p2MiNFYxLAmHhNsCQLzDp-S4aoOFxoA,318
67
- pyxcp/master/errorhandler.py,sha256=ulL6WiraZbVZnM2pfR8S9vlWAAP5UXwXqmbjjxH9rgc,15359
68
- pyxcp/master/master.py,sha256=FIYCWCh9948cNmQ-D1DcjNcpb4mlXZ8UdCxTFH9Ti4g,78435
67
+ pyxcp/master/errorhandler.py,sha256=-h7agNj040It-rFVVUfzoSrPd7QfzhuMTtEPLV6Qi9I,19949
68
+ pyxcp/master/master.py,sha256=fTthOPn-OMaxG7NNMpTXai0S3qNq9X-kC8Jj9fKZ8XA,79044
69
69
  pyxcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- pyxcp/recorder/__init__.py,sha256=jeTmKvfjIenxHxt7zn6HMjnDpuPQU0d9SdnYK_t3gdE,2850
70
+ pyxcp/recorder/__init__.py,sha256=HA8U6V85vbgZNWyNvJlY8l77YeTO0tHWl3t1v9DvjkQ,2846
71
71
  pyxcp/recorder/build_clang.cmd,sha256=JvFngSnb28XcBGXxC6MGrcOCGYfahOIvHpgRpqbA6HQ,175
72
72
  pyxcp/recorder/build_clang.sh,sha256=zmU3nZxaNH1pxGWMyQ-S541TuVqxS00p3iPR9NUP4Ec,181
73
73
  pyxcp/recorder/build_gcc.cmd,sha256=zj732DdvqDzGAFg7dvF83DUpf8Qf6rQ0cqEaID15Z80,238
@@ -82,15 +82,15 @@ pyxcp/recorder/mio.hpp,sha256=5ASJLKSEykH0deAQD5uak-_yAgd5p2n8t06315GSGrg,63346
82
82
  pyxcp/recorder/reader.hpp,sha256=rr9XZ_ciL6eF2_xEqyt9XYNqTIze9ytAsnf8uYukO9U,5201
83
83
  pyxcp/recorder/reco.py,sha256=6N6FIwfCEVMpi5dr3eUOQa1lowcg2LCnS_sy_-b-UiQ,8725
84
84
  pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- pyxcp/recorder/rekorder.cp310-win_amd64.pyd,sha256=53jF5N8lV5iLn8XHgYtrZZoK9i94kSwaB5uZwr93h3A,389632
86
- pyxcp/recorder/rekorder.cp311-win_amd64.pyd,sha256=MIeTpsRbjzLTbIBGHBinirn9jvrz_r4ao7JPVMqY6Yw,391168
87
- pyxcp/recorder/rekorder.cp312-win_amd64.pyd,sha256=pWoFwxF3pU80eHFI9k-vxDRJa5CI0p4mHidvEBYHznQ,396800
85
+ pyxcp/recorder/rekorder.cp310-win_amd64.pyd,sha256=ZSXjn6iUsMkUIcobhDKyRnjr-8ntKxmyj8m6RHje6V4,386560
86
+ pyxcp/recorder/rekorder.cp311-win_amd64.pyd,sha256=78AVwASIHdv1AiuXafOdmAhkLybqcEg34nLgydYB7IU,388096
87
+ pyxcp/recorder/rekorder.cp312-win_amd64.pyd,sha256=bedoIe_4tVC7hzXBqGbRXOf09GOtjyf-EQIF4BFQsXY,393216
88
88
  pyxcp/recorder/rekorder.cpp,sha256=U0LMyk8pZXx9emgS_WPVthvn_9IpgE7JGrh4kg-8CX4,1900
89
89
  pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
90
90
  pyxcp/recorder/setup.py,sha256=_99XFPQAd5V4LcJaSGJwdnbxgxJ7kl8DEXfHsnKO1Yg,998
91
91
  pyxcp/recorder/test_reko.py,sha256=M8lfKBmBUl-28IMVoD6lU5Bnorz7fYFOvcAjfVZxuXA,1014
92
- pyxcp/recorder/unfolder.hpp,sha256=3gJKT2eMOZuT8o_M2NFLthdUIWd460vdwzlHaf-fQII,47998
93
- pyxcp/recorder/wrap.cpp,sha256=S3frBevIrPE5m3kt_mXe9TDOwWPJFiVa7Rt9FGMCv2A,8909
92
+ pyxcp/recorder/unfolder.hpp,sha256=jKvjQs8VSVfsYRkLguV97Csde_Xbt8G-tGkuKnbaSqY,48763
93
+ pyxcp/recorder/wrap.cpp,sha256=T4cwpmjhYbr75Q3plQpJTkNLyKE4lL0W7GC-8QSURJ8,8666
94
94
  pyxcp/recorder/writer.hpp,sha256=rNjtRTtJes5z-BzKR2K56P_Kvc9MEVQgycu8J0wKf1g,11284
95
95
  pyxcp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
96
  pyxcp/scripts/pyxcp_probe_can_drivers.py,sha256=P_gscDTAofbSVA_Wd1GATrnyWGTf1-Dz_oPdlRFfjuk,567
@@ -113,19 +113,19 @@ pyxcp/tests/test_transport.py,sha256=vv7x7-rHPbmHc7BR8qcXx_Yy8STu1za1OzJmeuUSF14
113
113
  pyxcp/tests/test_utils.py,sha256=SrURAFc_6jtHng3PSZ5gpqXzVBVuPoMPB0YNvOvaIE0,880
114
114
  pyxcp/timing.py,sha256=zE6qPqOuidg6saNt7_zmbQgufxL9Id6akVYhAtpweQc,1705
115
115
  pyxcp/transport/__init__.py,sha256=31PaQLj76n5pXr68aJRWcYfrxEYWWgYoe9f_w3jZxsc,438
116
- pyxcp/transport/base.py,sha256=n_tCkebmpq3WXRZncOP5XWgUnSavaBBm3oGZhpeCF9U,16352
116
+ pyxcp/transport/base.py,sha256=oec_puTzn1KiVGfGKh5Fcl-H1b_-L2Eu934n6ImoKsw,23198
117
117
  pyxcp/transport/base_transport.hpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
- pyxcp/transport/can.py,sha256=Sm2qu5JOSZ-f-PdgHVknTm1JTAH_L2DNxTxb5OJUCpI,18806
119
- pyxcp/transport/eth.py,sha256=xPzN2oSALoPKJVvZpBljPSV1AxfpjRusOzymO-TD1Rw,8711
118
+ pyxcp/transport/can.py,sha256=jsF_dwAvR9N8QcpwVvjAKKimr_s424GV9dM6IFO98tk,21892
119
+ pyxcp/transport/eth.py,sha256=oboi3FD7EOZcNevqbdwWluUiEFSls0gxK8wjby0aiQ8,10008
120
120
  pyxcp/transport/sxi.py,sha256=kWB9x5M1pS7GBtBW6R65KBX7zDI9zcRRZhFM8frmzU0,4760
121
121
  pyxcp/transport/transport_wrapper.cpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
122
  pyxcp/transport/usb_transport.py,sha256=JuYrwkWsUdibdVNA57LBEQT3a3ykOgWPdWcfqj96nDE,8343
123
123
  pyxcp/types.py,sha256=mjp3FhsTTbS3D5VuC-dfdbMql0lJwEfbZjf8a2pHi1o,26158
124
- pyxcp/utils.py,sha256=_ag2QMt0IxVhiCLG5BIO8JzIGt-rdqYrY7DRAPQ4AtA,3530
124
+ pyxcp/utils.py,sha256=75j5W91l9gtz0bz8x6JsQxJY9Q3PiFgiyZtFaICabLU,3532
125
125
  pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
126
  pyxcp/vector/map.py,sha256=7Gnhvr79geMeqqGVIJPxODXGwABdNDinnqzhpooN5TE,2306
127
- pyxcp-0.23.3.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
128
- pyxcp-0.23.3.dist-info/LICENSE,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
129
- pyxcp-0.23.3.dist-info/METADATA,sha256=wQmqlFOaiVIYsJGLg5m2M0aHyit3Ofwl7T1FEjWiWNg,11688
130
- pyxcp-0.23.3.dist-info/WHEEL,sha256=nlDnkU5ewK6Tucq-8PtwvODkataHPbP8zOKzhf1Z7u4,98
131
- pyxcp-0.23.3.dist-info/RECORD,,
127
+ pyxcp-0.23.6.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
128
+ pyxcp-0.23.6.dist-info/LICENSE,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
129
+ pyxcp-0.23.6.dist-info/METADATA,sha256=worGPKzYtMWZ9BQD9WzyHEf9Bt1gWZwL95ZTAPadKEg,12718
130
+ pyxcp-0.23.6.dist-info/WHEEL,sha256=nlDnkU5ewK6Tucq-8PtwvODkataHPbP8zOKzhf1Z7u4,98
131
+ pyxcp-0.23.6.dist-info/RECORD,,