pyxcp 0.23.8__cp313-cp313-macosx_11_0_arm64.whl → 0.25.7__cp313-cp313-macosx_11_0_arm64.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.
- pyxcp/__init__.py +1 -1
- pyxcp/cmdline.py +14 -29
- pyxcp/config/__init__.py +1257 -1258
- pyxcp/cpp_ext/aligned_buffer.hpp +168 -0
- pyxcp/cpp_ext/bin.hpp +7 -6
- pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so +0 -0
- pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so +0 -0
- pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so +0 -0
- pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so +0 -0
- pyxcp/cpp_ext/daqlist.hpp +241 -73
- pyxcp/cpp_ext/extension_wrapper.cpp +123 -15
- pyxcp/cpp_ext/framing.hpp +360 -0
- pyxcp/cpp_ext/helper.hpp +280 -280
- pyxcp/cpp_ext/mcobject.hpp +248 -246
- pyxcp/cpp_ext/sxi_framing.hpp +332 -0
- pyxcp/daq_stim/__init__.py +145 -67
- pyxcp/daq_stim/optimize/binpacking.py +2 -2
- pyxcp/daq_stim/scheduler.cpp +8 -8
- pyxcp/errormatrix.py +2 -2
- pyxcp/examples/run_daq.py +5 -4
- pyxcp/examples/xcp_policy.py +6 -6
- pyxcp/examples/xcp_read_benchmark.py +2 -2
- pyxcp/examples/xcp_skel.py +1 -2
- pyxcp/examples/xcp_unlock.py +10 -12
- pyxcp/examples/xcp_user_supplied_driver.py +1 -2
- pyxcp/examples/xcphello.py +2 -15
- pyxcp/examples/xcphello_recorder.py +2 -2
- pyxcp/master/__init__.py +1 -0
- pyxcp/master/errorhandler.py +134 -4
- pyxcp/master/master.py +823 -252
- pyxcp/recorder/.idea/.gitignore +8 -0
- pyxcp/recorder/.idea/misc.xml +4 -0
- pyxcp/recorder/.idea/modules.xml +8 -0
- pyxcp/recorder/.idea/recorder.iml +6 -0
- pyxcp/recorder/.idea/sonarlint/issuestore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728 +7 -0
- pyxcp/recorder/.idea/sonarlint/issuestore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae +0 -0
- pyxcp/recorder/.idea/sonarlint/issuestore/b/4/b49006702b459496a8e8c94ebe60947108361b91 +0 -0
- pyxcp/recorder/.idea/sonarlint/issuestore/index.pb +7 -0
- pyxcp/recorder/.idea/sonarlint/securityhotspotstore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728 +0 -0
- pyxcp/recorder/.idea/sonarlint/securityhotspotstore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae +0 -0
- pyxcp/recorder/.idea/sonarlint/securityhotspotstore/b/4/b49006702b459496a8e8c94ebe60947108361b91 +0 -0
- pyxcp/recorder/.idea/sonarlint/securityhotspotstore/index.pb +7 -0
- pyxcp/recorder/.idea/vcs.xml +10 -0
- pyxcp/recorder/__init__.py +96 -98
- pyxcp/recorder/converter/__init__.py +4 -10
- pyxcp/recorder/reader.hpp +138 -139
- pyxcp/recorder/reco.py +1 -0
- pyxcp/recorder/rekorder.cpython-310-darwin.so +0 -0
- pyxcp/recorder/rekorder.cpython-311-darwin.so +0 -0
- pyxcp/recorder/rekorder.cpython-312-darwin.so +0 -0
- pyxcp/recorder/rekorder.cpython-313-darwin.so +0 -0
- pyxcp/recorder/rekorder.hpp +274 -274
- pyxcp/recorder/unfolder.hpp +1354 -1319
- pyxcp/recorder/wrap.cpp +184 -183
- pyxcp/recorder/writer.hpp +302 -302
- pyxcp/scripts/xcp_daq_recorder.py +54 -0
- pyxcp/scripts/xcp_fetch_a2l.py +2 -2
- pyxcp/scripts/xcp_id_scanner.py +1 -2
- pyxcp/scripts/xcp_info.py +66 -51
- pyxcp/scripts/xcp_profile.py +1 -2
- pyxcp/tests/test_daq.py +1 -1
- pyxcp/tests/test_framing.py +262 -0
- pyxcp/tests/test_master.py +210 -100
- pyxcp/tests/test_transport.py +138 -42
- pyxcp/timing.py +1 -1
- pyxcp/transport/__init__.py +8 -5
- pyxcp/transport/base.py +70 -180
- pyxcp/transport/can.py +58 -7
- pyxcp/transport/eth.py +32 -15
- pyxcp/transport/hdf5_policy.py +167 -0
- pyxcp/transport/sxi.py +126 -52
- pyxcp/transport/transport_ext.cpython-310-darwin.so +0 -0
- pyxcp/transport/transport_ext.cpython-311-darwin.so +0 -0
- pyxcp/transport/transport_ext.cpython-312-darwin.so +0 -0
- pyxcp/transport/transport_ext.cpython-313-darwin.so +0 -0
- pyxcp/transport/transport_ext.hpp +214 -0
- pyxcp/transport/transport_wrapper.cpp +249 -0
- pyxcp/transport/usb_transport.py +47 -31
- pyxcp/types.py +0 -13
- pyxcp/{utils.py → utils/__init__.py} +1 -2
- pyxcp/utils/cli.py +78 -0
- {pyxcp-0.23.8.dist-info → pyxcp-0.25.7.dist-info}/METADATA +4 -2
- pyxcp-0.25.7.dist-info/RECORD +158 -0
- {pyxcp-0.23.8.dist-info → pyxcp-0.25.7.dist-info}/WHEEL +1 -1
- pyxcp/examples/conf_sxi.json +0 -9
- pyxcp/examples/conf_sxi.toml +0 -7
- pyxcp-0.23.8.dist-info/RECORD +0 -135
- {pyxcp-0.23.8.dist-info → pyxcp-0.25.7.dist-info}/entry_points.txt +0 -0
- {pyxcp-0.23.8.dist-info → pyxcp-0.25.7.dist-info/licenses}/LICENSE +0 -0
pyxcp/utils/cli.py
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
"""
|
|
3
|
+
Reusable command-line parser utilities.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
|
|
8
|
+
import argparse
|
|
9
|
+
import sys
|
|
10
|
+
from collections.abc import Sequence
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class StrippingParser:
|
|
14
|
+
"""Base class for parsers that can strip recognized arguments from sys.argv.
|
|
15
|
+
|
|
16
|
+
This is useful when multiple argument parsers are used in a single process (chained),
|
|
17
|
+
and downstream parsers should not see arguments already handled by an
|
|
18
|
+
upstream parser.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
def __init__(self, parser: argparse.ArgumentParser) -> None:
|
|
22
|
+
"""Initialize with an existing ArgumentParser instance."""
|
|
23
|
+
self._parser = parser
|
|
24
|
+
|
|
25
|
+
@property
|
|
26
|
+
def parser(self) -> argparse.ArgumentParser:
|
|
27
|
+
"""Return the underlying ArgumentParser instance."""
|
|
28
|
+
return self._parser
|
|
29
|
+
|
|
30
|
+
def parse_known(self, argv: Sequence[str] | None = None) -> tuple[argparse.Namespace, list[str]]:
|
|
31
|
+
"""Parse known args from ``argv`` and return (namespace, remaining).
|
|
32
|
+
|
|
33
|
+
Does not mutate ``sys.argv``.
|
|
34
|
+
"""
|
|
35
|
+
if argv is None:
|
|
36
|
+
argv = sys.argv[1:]
|
|
37
|
+
namespace, remaining = self._parser.parse_known_args(argv)
|
|
38
|
+
|
|
39
|
+
# Emulate standard -h/--help behavior if "help" is in the namespace
|
|
40
|
+
if getattr(namespace, "help", False):
|
|
41
|
+
# Print help and exit similarly to ArgumentParser
|
|
42
|
+
# We need a temporary full parser to render standard help including program name
|
|
43
|
+
full = argparse.ArgumentParser(description=self._parser.description)
|
|
44
|
+
for action in self._parser._actions:
|
|
45
|
+
if action.option_strings and action.dest == "help":
|
|
46
|
+
continue
|
|
47
|
+
full._add_action(action)
|
|
48
|
+
full.print_help()
|
|
49
|
+
sys.exit(0)
|
|
50
|
+
|
|
51
|
+
return namespace, list(remaining)
|
|
52
|
+
|
|
53
|
+
def strip_from_argv(self, argv: list[str] | None = None) -> None:
|
|
54
|
+
"""Remove this parser's recognized options from ``sys.argv`` in-place.
|
|
55
|
+
|
|
56
|
+
If ``argv`` is provided, it is treated as a mutable list whose content
|
|
57
|
+
will be replaced with the stripped version (first element preserved as
|
|
58
|
+
program name). If omitted, ``sys.argv`` is modified.
|
|
59
|
+
"""
|
|
60
|
+
arg_list = argv if argv is not None else sys.argv
|
|
61
|
+
if not arg_list:
|
|
62
|
+
return
|
|
63
|
+
_, remaining = self.parse_known(arg_list[1:])
|
|
64
|
+
# Rebuild argv with program name + remaining
|
|
65
|
+
prog = arg_list[0]
|
|
66
|
+
arg_list[:] = [prog] + remaining
|
|
67
|
+
|
|
68
|
+
def parse_and_strip(self, argv: list[str] | None = None) -> argparse.Namespace:
|
|
69
|
+
"""Parse options and strip them from argv; returns the parsed namespace."""
|
|
70
|
+
arg_list = argv if argv is not None else sys.argv
|
|
71
|
+
if not arg_list:
|
|
72
|
+
# Fallback for empty list
|
|
73
|
+
return self.parse_known([])[0]
|
|
74
|
+
namespace, remaining = self.parse_known(arg_list[1:])
|
|
75
|
+
# mutate
|
|
76
|
+
prog = arg_list[0]
|
|
77
|
+
arg_list[:] = [prog] + remaining
|
|
78
|
+
return namespace
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyxcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.25.7
|
|
4
4
|
Summary: Universal Calibration Protocol for Python
|
|
5
5
|
License: LGPLv3
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Keywords: automotive,ecu,xcp,asam,autosar
|
|
7
8
|
Author: Christoph Schueler
|
|
8
9
|
Author-email: cpu.gems@googlemail.com
|
|
@@ -24,6 +25,7 @@ Requires-Dist: chardet (>=5.2.0,<6.0.0)
|
|
|
24
25
|
Requires-Dist: construct (>=2.10.68,<3.0.0)
|
|
25
26
|
Requires-Dist: line-profiler-pycharm (>=1.1.0,<2.0.0)
|
|
26
27
|
Requires-Dist: mako (>=1.2.4,<2.0.0)
|
|
28
|
+
Requires-Dist: pydantic (>=2.5,<3)
|
|
27
29
|
Requires-Dist: pyserial (>=3.5,<4.0)
|
|
28
30
|
Requires-Dist: python-can (>=4.2.2,<5.0.0)
|
|
29
31
|
Requires-Dist: pytz (>=2025.2,<2026.0)
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
pyxcp-0.25.7.dist-info/RECORD,,
|
|
2
|
+
pyxcp-0.25.7.dist-info/WHEEL,sha256=aIwTE95iWgJq0ZaanE5J1I9aA7vP4_aGZrmK99hUE1M,134
|
|
3
|
+
pyxcp-0.25.7.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
|
|
4
|
+
pyxcp-0.25.7.dist-info/METADATA,sha256=Pmk2Y50QPlFdq8oNz_mVJz2vSDpSUp5ZZQMLPOKRlDg,12775
|
|
5
|
+
pyxcp-0.25.7.dist-info/licenses/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
6
|
+
pyxcp/dllif.py,sha256=m4e-_dgDLCD6COU5W2LdeYUlib_Xxyxbh977bbS-VAU,3344
|
|
7
|
+
pyxcp/checksum.py,sha256=aveS0z4vthLXABEFhTqELqFNi7LM6ZzDzq7dD5Xe9oo,11167
|
|
8
|
+
pyxcp/asamkeydll.sh,sha256=iema12sub6qNE0xAuzwGtx0FmkdaaOKoXalhrtWVaa8,57
|
|
9
|
+
pyxcp/asamkeydll.c,sha256=l5RHYcEPY_Q07G-W5IjCq0xci8YfUR-3uYt84OOkOJI,2836
|
|
10
|
+
pyxcp/constants.py,sha256=Yemk_Gi_m78EEU0v-sdGCAodb9dv_vqP969IU3izA2M,1113
|
|
11
|
+
pyxcp/cmdline.py,sha256=JHzI80gqQ16bC5_ArSmmzZ8CchFsR2dKz_21pdAoDk8,2288
|
|
12
|
+
pyxcp/__init__.py,sha256=ta4osdL-tW0h2qORKkidMCeHb1HR24INHCxaOFrlsaA,527
|
|
13
|
+
pyxcp/types.py,sha256=dMYu4yzKL_TXFb7jUH31nVLRTDvss7nQO9O49OZju2k,24976
|
|
14
|
+
pyxcp/timing.py,sha256=HizFH0TCqrlDYftHdfxZSNCsNBysg0omkroeae2OqRM,1642
|
|
15
|
+
pyxcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
pyxcp/errormatrix.py,sha256=eQ8t13M3VxsJhTHF2RwiTcboV__ktj3TzEvzL3j1ImE,44586
|
|
17
|
+
pyxcp/asamkeydll,sha256=gN2rba8QriwZO9AZ_cUdmf8TS48P1vjonaaAN3bc9gk,50584
|
|
18
|
+
pyxcp/asam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
pyxcp/asam/types.py,sha256=V4wSCGI1pXn0EsBemDyaHTBgY2wkV_BeLShnDIGGgDE,2310
|
|
20
|
+
pyxcp/daq_stim/stim.cpython-312-darwin.so,sha256=jduyfSIFTpWrAV47wGzJL3tzoZfkfVmDMeFl64P_oTo,237880
|
|
21
|
+
pyxcp/daq_stim/stim.cpp,sha256=sABgEfbQlt5kXbzAsndyhaDFWRWTJw3jJlNfanIVrRs,164
|
|
22
|
+
pyxcp/daq_stim/__init__.py,sha256=x9QL5BURTIhmPmiazSvLbQ9UTajyBSowIqAo48b9xa8,16140
|
|
23
|
+
pyxcp/daq_stim/scheduler.cpp,sha256=A5WwZreIFh9YXb2pjdHNHpmDJEGv_He2ZO461iyIVEs,1404
|
|
24
|
+
pyxcp/daq_stim/stim.cpython-313-darwin.so,sha256=IX8coHUbNwfIvIDCQAeGmUJIZNSeAs9cvZe6Sm1VvMI,238120
|
|
25
|
+
pyxcp/daq_stim/stim.hpp,sha256=1DwAhkY7XJN14aD2BxLJ4O1j4_a6RvpePIbAG1U8iOA,17904
|
|
26
|
+
pyxcp/daq_stim/stim.cpython-310-darwin.so,sha256=ciy3m3t6O2ijjYa190hWupKTv4NYSe6xs7EipP3FBFk,237816
|
|
27
|
+
pyxcp/daq_stim/scheduler.hpp,sha256=H-kwyZBV3S8q6YlCq6OLUbaNXskyCOS4z3SRP32ikPY,1809
|
|
28
|
+
pyxcp/daq_stim/stim_wrapper.cpp,sha256=7iL1-4BPavo5bfrph20Fvicn6HxGEZQqYLvdxniJBYU,1945
|
|
29
|
+
pyxcp/daq_stim/stim.cpython-311-darwin.so,sha256=aahyParbpwhlB-BuKK1ZPOP8oiNfNFaserUsVLZ9XHE,237896
|
|
30
|
+
pyxcp/daq_stim/optimize/__init__.py,sha256=joAKvAvlYQEi7VF2oVftn_ohgRO231wnc3e8fY231L4,2453
|
|
31
|
+
pyxcp/daq_stim/optimize/binpacking.py,sha256=cRJKdJfHa7adZQeYc4jzIiUp7z9UQadGexGNCZQgePU,1216
|
|
32
|
+
pyxcp/transport/transport_ext.cpython-312-darwin.so,sha256=TZKO7PX30RPfxubt3kD9mto7KrYYgJBiV6ZaB9J6mLc,579088
|
|
33
|
+
pyxcp/transport/transport_wrapper.cpp,sha256=6TlcoK0s_0KfPB2CS28ip3aTva9Mh-9c9FPgIOtZHFI,12236
|
|
34
|
+
pyxcp/transport/eth.py,sha256=oWJT7ys5f3q-y6Pfe4YXi8ztNIEfh6C23lMTdTMSR68,10276
|
|
35
|
+
pyxcp/transport/sxi.py,sha256=uqU7hoqIt1WusTYZF054xRsA5Tu8fqC1y9PfuuCQ2Ek,7170
|
|
36
|
+
pyxcp/transport/transport_ext.hpp,sha256=h57BM0XEiHDZj3Ze647cSsTdMtYmrnZ9AR_rLgqxhTw,6297
|
|
37
|
+
pyxcp/transport/base_transport.hpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
pyxcp/transport/transport_ext.cpython-313-darwin.so,sha256=UW3nz3EHa556k46-SaXF2oRqlVdooYr_BqKHK5efSk8,579344
|
|
39
|
+
pyxcp/transport/__init__.py,sha256=JNu4LcdhEHYCLGOj-JpgQ8Sp_cOLGKWWDqFNFxnig2U,404
|
|
40
|
+
pyxcp/transport/usb_transport.py,sha256=zkPAs11kp-B-fkISevHUjC5yVD05Oicia_wNvbjviEk,8673
|
|
41
|
+
pyxcp/transport/can.py,sha256=_Y7rXXkx1kZuLWThi2lpubIDOTvkR6riJSlCV2jPYIQ,23372
|
|
42
|
+
pyxcp/transport/transport_ext.cpython-310-darwin.so,sha256=g2FV_ewvY2TPxsSEkGHfT0DeXOcTcVD0K5TfH9kooXc,578944
|
|
43
|
+
pyxcp/transport/hdf5_policy.py,sha256=8gtImyZN9hKPl8zTmeGGTu800_GSINogMkr0B5MzqfM,5377
|
|
44
|
+
pyxcp/transport/transport_ext.cpython-311-darwin.so,sha256=c-7quQqJWpo2pLlntksqda-4H91kxCUcjNip7TDko5s,579088
|
|
45
|
+
pyxcp/transport/base.py,sha256=aVO2IkKxZTPV6NaaX6HrVYXqB0nE1jqz_66omSgc9Io,18300
|
|
46
|
+
pyxcp/config/legacy.py,sha256=Uhu_6bp_W8yGmZ2s3TFzf8-5mGwLdeTss56BMYWpsZY,5100
|
|
47
|
+
pyxcp/config/__init__.py,sha256=ptIA8nhiAWCq38bKMtvzELY-sOIy8nRNfiJStlDTjpI,47015
|
|
48
|
+
pyxcp/tests/test_utils.py,sha256=gqv3bhhWfKKdKDkqnELqsOHCfpRRZwlReEy87Ya4Z2w,850
|
|
49
|
+
pyxcp/tests/test_master.py,sha256=0nCKiv1xIs1wTe03QGSnvQxACjRgYUhK1VnrhYDF2ec,73340
|
|
50
|
+
pyxcp/tests/test_daq.py,sha256=JQHMNL3tW-lRzvkmQPcSgt3G_jy3dOCU2HS0a1eRzi8,5344
|
|
51
|
+
pyxcp/tests/test_binpacking.py,sha256=BKgIGZDv_RjZOjNvbzEcjonQ4_QZHMZjn7_YPOfHdUI,7437
|
|
52
|
+
pyxcp/tests/test_asam_types.py,sha256=olmvcmEVRb4Oar2mOnCTN4qCdM3w6SoKmBpjwHfKwO8,563
|
|
53
|
+
pyxcp/tests/test_checksum.py,sha256=rkkdLPH4But4wPxlRtVOC4Wd5kCH2suU4Dle6-HXHTk,1713
|
|
54
|
+
pyxcp/tests/test_frame_padding.py,sha256=soGk99lWVN7oju_5F84HEBQ1V_zwH-4xh_hTPBgVp54,3049
|
|
55
|
+
pyxcp/tests/test_daq_opt.py,sha256=plhoUEJmf39kRVkH-17TvFIeyGTt7DljMqdw2eO6Yjg,12585
|
|
56
|
+
pyxcp/tests/test_transport.py,sha256=JvKFMa5RPyBX0ZidB6RKGF0gvngLJpO02hUgN2_dhxs,5771
|
|
57
|
+
pyxcp/tests/test_framing.py,sha256=69JupN4aNBzn_d72zQzovCVv_kaqfAQKlizKsiKSB50,7709
|
|
58
|
+
pyxcp/tests/test_can.py,sha256=bAhtFxXQcNJ6xDO-RHLHbRVTa7eDXd8WrO1SqMJp6P8,62672
|
|
59
|
+
pyxcp/utils/__init__.py,sha256=9yTOLWmSjMPxeWRRG9dBE_KCTJZN5G8ThFpfWVwVOmk,3382
|
|
60
|
+
pyxcp/utils/cli.py,sha256=R1vY0LVC1IWjEkURJPWvqfAGaY4_2d29Bv28mSWO9W8,2949
|
|
61
|
+
pyxcp/aml/ifdata_CAN.a2l,sha256=c7GbbYyyXSdpmCBok4AdqU17OdiiHGguhZqhenD-UhI,592
|
|
62
|
+
pyxcp/aml/EtasCANMonitoring.a2l,sha256=at5QlrKbdY2JqkPpQ9b7cfHsYD62DKc_H3-IezQJGuE,1427
|
|
63
|
+
pyxcp/aml/ifdata_Eth.a2l,sha256=ip_6mV2wPL0Eec9tD2sAxMxMnK5AzbnvAxHljsLe57U,239
|
|
64
|
+
pyxcp/aml/XCPonSxI.aml,sha256=CBP3GrneqIjCNqi2p23cp6jsietHBLpNj15bQXb6naM,3235
|
|
65
|
+
pyxcp/aml/ifdata_USB.a2l,sha256=eoHTtynoySh963g8R-1UR4vpKh-3oXEE5pXfSYZWDUc,3575
|
|
66
|
+
pyxcp/aml/XCP_Common.aml,sha256=BVIVvAMi6QuFWtSj728a-Fl7V_GCXyNbewZzUtD-LTM,15037
|
|
67
|
+
pyxcp/aml/ifdata_Flx.a2l,sha256=_MNdBmTgCdFlGV7lkS-cAduwz6PQNOttKdjrj09bQkc,1797
|
|
68
|
+
pyxcp/aml/EtasCANMonitoring.aml,sha256=Bqg1tt_pemaeqGO4Qq6rlb7nhRoPIzPYnVppDqX2egg,2338
|
|
69
|
+
pyxcp/aml/XCPonCAN.aml,sha256=Ml4Mgf6Ky_oz3KrytrgOUAMFiRiXJBJwRajr0FWgcco,3771
|
|
70
|
+
pyxcp/aml/XCPonEth.aml,sha256=GfvkqVX4MqnAkUicjd-XVw4z2O3YtMag_A3b5isgcBE,2214
|
|
71
|
+
pyxcp/aml/XCPonUSB.aml,sha256=rPGduH-PE8-tBeELSm3vfkbf62uhlVP6gvJL0OvMclc,4847
|
|
72
|
+
pyxcp/aml/ifdata_SxI.a2l,sha256=8rAB6HTTAuNlFSrkFpR7fUA702yN4rTTNkw-xspZNV0,303
|
|
73
|
+
pyxcp/aml/XCPonFlx.aml,sha256=z58FMu6ZF4hVun8WBCuxvDrq6FZ_gj3tZM15G7E8Uvw,4647
|
|
74
|
+
pyxcp/master/__init__.py,sha256=fx2RRcd5N54E9NCZgG68OcB_KLKeQfFRyiZe-Ecsvik,310
|
|
75
|
+
pyxcp/master/master.py,sha256=7A9AgG1V7RyxcRX5Qpuq-4c2MlFMZ_vpPEj1wg3K8bo,98880
|
|
76
|
+
pyxcp/master/errorhandler.py,sha256=HjaaO_QQlSs5IVkuGk5rjLv_La5HlYCdzt5BFhTALOE,25951
|
|
77
|
+
pyxcp/examples/xcp_read_benchmark.py,sha256=oE0ulTmVmoKXt5lWrPR8n9IGqHzKOm0FUZwpqTku0s8,918
|
|
78
|
+
pyxcp/examples/conf_eth.toml,sha256=b6bKN-K07gMQHNj7yiyB-HKrkVtZREgPXS4ByQueBs4,190
|
|
79
|
+
pyxcp/examples/xcphello_recorder.py,sha256=yxnXGwY6O3vYxJxaTovinb_Ui6l-9KRKDt0x8FR5tuw,3302
|
|
80
|
+
pyxcp/examples/conf_nixnet.json,sha256=R-RKw172YhssO_9rud5McxtjesphEadA9Ub2OEKHpGM,424
|
|
81
|
+
pyxcp/examples/conf_can_vector.json,sha256=VtGmyt9ORPTo9yirv1fZM_XT9DARFFNwai11RaCNRWo,238
|
|
82
|
+
pyxcp/examples/conf_can_user.toml,sha256=BqCID-GvaNbA6pbqRbyRMuzKAsJaYVube0ql4CvkMoY,298
|
|
83
|
+
pyxcp/examples/xcp_user_supplied_driver.py,sha256=xC02xjfLtT6zhjP-kUXxWh2f35jcZofe1OMwnTJ9qTM,1091
|
|
84
|
+
pyxcp/examples/xcp_skel.py,sha256=SYghH9mxJyP2oU2snfr-OswcvZvOobqk7UQGbFQIiow,1109
|
|
85
|
+
pyxcp/examples/xcp_unlock.py,sha256=aijlbyRBnujzBv2-qDjMEKP7Jk-GY31npzgVP2Zd7Ws,696
|
|
86
|
+
pyxcp/examples/xcphello.py,sha256=Ab_pTX4xL-NaMAKQwyYyy2GkABNYO2LLBz5veRCq-bI,2291
|
|
87
|
+
pyxcp/examples/run_daq.py,sha256=IjfQiXXmlhQ2pGh5KW9QRqztb8LBTLS0eW3I7cFkPmo,5511
|
|
88
|
+
pyxcp/examples/conf_socket_can.toml,sha256=JB9zHHaya2mDXf0zPY7zEKiBDX2chzBBRxt7h3LxxDk,257
|
|
89
|
+
pyxcp/examples/conf_can.toml,sha256=oGkZYgmcpPsJ6YKGELm6DqF-hNvokJHCq99LAqxCyso,351
|
|
90
|
+
pyxcp/examples/conf_can_vector.toml,sha256=kKaYPum6MbN5s3zFc6rn232grpAM5QTwrQARODg5d9k,251
|
|
91
|
+
pyxcp/examples/xcp_policy.py,sha256=0A4v8Tr-xj2yVwHRoDaou97R6Hk6Yx96bPovnUoe5ro,1861
|
|
92
|
+
pyxcp/scripts/xcp_id_scanner.py,sha256=9sbJFUYI8NZRZM5SOPaa7wK9Xs_HNIcs217JeMLNHHo,401
|
|
93
|
+
pyxcp/scripts/xmraw_converter.py,sha256=W_Znm5OzBKfcyiUgwHIaLYdc2DEusX6jv2b03KAHYrk,653
|
|
94
|
+
pyxcp/scripts/xcp_profile.py,sha256=Ah2KWCzlbwZm9NTXfxafbozxw4IkbdDTxKh5E_rGX7Y,587
|
|
95
|
+
pyxcp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
pyxcp/scripts/xcp_fetch_a2l.py,sha256=7tl6leBxZsntM3OKnGI3mCujfDjm-gg4ILBSIaN78fI,1199
|
|
97
|
+
pyxcp/scripts/xcp_info.py,sha256=sqwCK3jRHU0YvPtnSxKoC4RRspVM_vvwEVWo7JnlirQ,6278
|
|
98
|
+
pyxcp/scripts/xcp_daq_recorder.py,sha256=uFTRNEyZ7_YL1ke57DWH-BiMC4b0-RPZlrmjujVkyfU,1531
|
|
99
|
+
pyxcp/scripts/xcp_examples.py,sha256=rsvpb6moMhBxAcP5hBnHug9x-6i65WVwL5Q_tHty59c,2519
|
|
100
|
+
pyxcp/scripts/pyxcp_probe_can_drivers.py,sha256=qnNLYa6hInzNrVyYh7xXYt_SB5b-tgMJHXJwIkz7lbE,547
|
|
101
|
+
pyxcp/recorder/build_gcc_arm.sh,sha256=spqHf6D8Jd4NACYG65SNjb-BLMntELwBDO4PpHUiyYc,238
|
|
102
|
+
pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
+
pyxcp/recorder/mio.hpp,sha256=emP4qMXTxOe1wRSkB_U0hgOVz4aMUgG5dqcCvNNkAjs,61632
|
|
104
|
+
pyxcp/recorder/build_gcc.cmd,sha256=A1xt8AS7VZxjJq21VzX8cOT7wl9ap_AIXBWbcIEddCw,237
|
|
105
|
+
pyxcp/recorder/writer.hpp,sha256=OzDjyOc3_h-2A1sfclaStH4UYidytX_f9l5vpqRltRA,10982
|
|
106
|
+
pyxcp/recorder/rekorder.cpython-310-darwin.so,sha256=w9pw6ugYi7KqbqOX86KwaFiYz-wS2LgY40dB3plEXTw,529984
|
|
107
|
+
pyxcp/recorder/lz4hc.c,sha256=GhoLtpQF6ViHkhQ_TaLw9UCzSB_MO-fdflgjR_xFFfM,86829
|
|
108
|
+
pyxcp/recorder/lz4.h,sha256=BkRLAtxukE15Z2yO0Pjrq-n6hw5W6jkGFR5f14MzpEU,45604
|
|
109
|
+
pyxcp/recorder/rekorder.cpp,sha256=LtN3Ud_pigNZ70gJ5-tyFJZN-3PMDVwqbbH694--TxQ,1841
|
|
110
|
+
pyxcp/recorder/wrap.cpp,sha256=ISwANK9QSSF3QzrX-ct8jVdTSorejNqPFv9I0WYZCUY,8523
|
|
111
|
+
pyxcp/recorder/build_clang.sh,sha256=TZHpQZbRE6M6vHf_ln5laO9tyREUbMu-HAw0VDGx5yw,179
|
|
112
|
+
pyxcp/recorder/reader.hpp,sha256=iWzi_wYuWS0rqJ4CIInhryftKdU0hTVDnnqHH0S4mFY,4993
|
|
113
|
+
pyxcp/recorder/__init__.py,sha256=tMqiPL3tbYEVpxAIIBBr6dF4fKNmMJQN0kxkfgWBGLA,2680
|
|
114
|
+
pyxcp/recorder/test_reko.py,sha256=sIM_BBY9sq1ZUTawoxmDzdtd5qHPT9w6eVYZoY4iFik,980
|
|
115
|
+
pyxcp/recorder/build_clang.cmd,sha256=vIWwC1zF_WChakjfj8VaUCN6X8HwyqvGgFRdUub1TtE,174
|
|
116
|
+
pyxcp/recorder/rekorder.cpython-311-darwin.so,sha256=8AXLZN1G6hhWP1DYIKwEu5nIwYZ2eeJMtgackkHpmqY,530128
|
|
117
|
+
pyxcp/recorder/reco.py,sha256=DRY1iR8DQf8qp1EJgscQUEk80gd0gtXqslzBc_hfzKY,8449
|
|
118
|
+
pyxcp/recorder/setup.py,sha256=piwBqaIX6SY1CyjKlantmd3I_VS6rk56sELvmPguKNM,957
|
|
119
|
+
pyxcp/recorder/rekorder.hpp,sha256=8RBUDN_MejmDQwm1IWxakPpQOE8ZN6yuJpeeAAlsPb0,7364
|
|
120
|
+
pyxcp/recorder/lz4hc.h,sha256=U_uN3Q2wIi3_dbEceJ16xHJZGotUiBTcnL6O5ARPi8M,20179
|
|
121
|
+
pyxcp/recorder/rekorder.cpython-312-darwin.so,sha256=3OBGF_7vokZYz-UtBgKpSZBGbbze6iQ0Trz9X_XtJGA,530144
|
|
122
|
+
pyxcp/recorder/lz4.c,sha256=k5b33lJ7yENd6cdWn7eZjlZUWoS088LYCMAjXAF3RTk,118145
|
|
123
|
+
pyxcp/recorder/build_gcc.sh,sha256=uvMhL4faEJmhG_8rzSOxEBRRqrACC0kmZgaERN8GkUs,209
|
|
124
|
+
pyxcp/recorder/rekorder.cpython-313-darwin.so,sha256=eJdOP68XJPafDp6gEPRzAiIY0y7X40fAt0ohdxV9Qok,530400
|
|
125
|
+
pyxcp/recorder/unfolder.hpp,sha256=myQB5iHXLMx-cNYizm6J04revO5eW4ErSHBr73Ftqu0,48337
|
|
126
|
+
pyxcp/recorder/converter/__init__.py,sha256=RzdPTvUPy4mYdGtjEDIASt-5zvTdaopJ10Av7rz49Bw,14449
|
|
127
|
+
pyxcp/recorder/.idea/recorder.iml,sha256=Uac-W-hqE20I8EQsN-K3uiM7ON5GPEI8XoEbFfQ_dPA,242
|
|
128
|
+
pyxcp/recorder/.idea/vcs.xml,sha256=maW9cVjzaPQX8tL7QZRVr9VlVBFHJIM-auqlSyB3DdA,418
|
|
129
|
+
pyxcp/recorder/.idea/.gitignore,sha256=ClVIsXOqwO-UO7s6-FDWdve2Ud3tufjX8Gc1vCgJs9s,176
|
|
130
|
+
pyxcp/recorder/.idea/modules.xml,sha256=vOcqSKHDcdapjX7aKD3tZ5HdC_uCAHk4XkJQ-ZIK0Tw,269
|
|
131
|
+
pyxcp/recorder/.idea/misc.xml,sha256=1mFo944w-NE1LqCACq1LFwLyST6jC_DrY0QHY0xCaTw,138
|
|
132
|
+
pyxcp/recorder/.idea/sonarlint/issuestore/index.pb,sha256=pt_itWgvTAnMANXontA5cYFLHGjruv10VB_c2Ij5YFs,184
|
|
133
|
+
pyxcp/recorder/.idea/sonarlint/issuestore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
+
pyxcp/recorder/.idea/sonarlint/issuestore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728,sha256=YKcXNhekpl1LD7TEGHPjjXbmwyfY0c50DyveDrMVFxo,602
|
|
135
|
+
pyxcp/recorder/.idea/sonarlint/issuestore/b/4/b49006702b459496a8e8c94ebe60947108361b91,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
+
pyxcp/recorder/.idea/sonarlint/securityhotspotstore/index.pb,sha256=pt_itWgvTAnMANXontA5cYFLHGjruv10VB_c2Ij5YFs,184
|
|
137
|
+
pyxcp/recorder/.idea/sonarlint/securityhotspotstore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
|
+
pyxcp/recorder/.idea/sonarlint/securityhotspotstore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
+
pyxcp/recorder/.idea/sonarlint/securityhotspotstore/b/4/b49006702b459496a8e8c94ebe60947108361b91,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
+
pyxcp/stim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
+
pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
+
pyxcp/vector/map.py,sha256=dSxM15eXvZh6izITdJmFxr1rplDUlfaJUbtrm2Xv-dE,2224
|
|
143
|
+
pyxcp/cpp_ext/event.hpp,sha256=X2_ThYx8fzz-XR9McmsKM2Hb9I2x7XZeQGy1OyUs6iE,1133
|
|
144
|
+
pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so,sha256=ZzXeinfJxEOFXrdm2zH9GjmKAj-rHY_gMnwaOG5jlkU,372400
|
|
145
|
+
pyxcp/cpp_ext/blockmem.hpp,sha256=wSUDTgwO9zNn0c29hZ_MRH7cHDIFKma2MYVxip9ARNE,1184
|
|
146
|
+
pyxcp/cpp_ext/mcobject.hpp,sha256=QHv3QFGguakOfQZVOS3k0eFciIz1B5uGC54lhe00YJA,6274
|
|
147
|
+
pyxcp/cpp_ext/tsqueue.hpp,sha256=PuDd0kmj61afjW0yva6T8pZL3m4fPCeWsuvEyx2M-80,980
|
|
148
|
+
pyxcp/cpp_ext/extension_wrapper.cpp,sha256=Mq4AYKLRMhCmad9OcGw8Z5WT36wdgXe8xqMRofJZjZU,9644
|
|
149
|
+
pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so,sha256=qdn5GUFji0pojZMlmVb21CDN9rTZmxwsP6maBGdDpR0,372160
|
|
150
|
+
pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
pyxcp/cpp_ext/sxi_framing.hpp,sha256=ddK7GGJUxtDd_K0HCp-z-LGhCOMvHDfKtdEKw0WU1Ac,11505
|
|
152
|
+
pyxcp/cpp_ext/helper.hpp,sha256=-DucElUSgC2ynPBqoFlPs-4xifXRBAcN35xxqz0nL00,7533
|
|
153
|
+
pyxcp/cpp_ext/bin.hpp,sha256=QRDjy-yHsDH2uz-fZAxdwZXH40B6l7LsviJ6BTjp0HA,2568
|
|
154
|
+
pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so,sha256=J_9-syVq0G81YmXcdzf3UoBN2PHQ5Ps4JULr0MXRt34,372144
|
|
155
|
+
pyxcp/cpp_ext/daqlist.hpp,sha256=ch_wYTmfPws8Db_i_dlWThX_kXCKnPS_RhGIX1ZUspg,13622
|
|
156
|
+
pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so,sha256=pe57WnKrafl1FTKWjPcf7T1odqy6G2xelSttRIePl4E,372064
|
|
157
|
+
pyxcp/cpp_ext/framing.hpp,sha256=uB9LxpcqPnKQtEvCkj3z8gsYuyfUebAQgiRSEipMCrI,11300
|
|
158
|
+
pyxcp/cpp_ext/aligned_buffer.hpp,sha256=_70GjiJWP3a2lafk2FhjfDNdvTB3LN8GFPt_bmTw-Rw,5280
|
pyxcp/examples/conf_sxi.json
DELETED
pyxcp/examples/conf_sxi.toml
DELETED
pyxcp-0.23.8.dist-info/RECORD
DELETED
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
pyxcp/dllif.py,sha256=m4e-_dgDLCD6COU5W2LdeYUlib_Xxyxbh977bbS-VAU,3344
|
|
2
|
-
pyxcp/checksum.py,sha256=aveS0z4vthLXABEFhTqELqFNi7LM6ZzDzq7dD5Xe9oo,11167
|
|
3
|
-
pyxcp/asamkeydll.sh,sha256=iema12sub6qNE0xAuzwGtx0FmkdaaOKoXalhrtWVaa8,57
|
|
4
|
-
pyxcp/asamkeydll.c,sha256=l5RHYcEPY_Q07G-W5IjCq0xci8YfUR-3uYt84OOkOJI,2836
|
|
5
|
-
pyxcp/constants.py,sha256=Yemk_Gi_m78EEU0v-sdGCAodb9dv_vqP969IU3izA2M,1113
|
|
6
|
-
pyxcp/cmdline.py,sha256=OVSO-X6JV1Si2tKZ1ar2gYbiqCTlTaj5jY-z6N2Vk3Q,2453
|
|
7
|
-
pyxcp/__init__.py,sha256=XO1Scje0Ha9TJbL8sJGjBmKbf8qcUAiDVx77LlxsKL0,527
|
|
8
|
-
pyxcp/types.py,sha256=XJxJUh9bK5Urfia8IHVLJ-NFgQACYBd_n73L-AaeZts,25158
|
|
9
|
-
pyxcp/timing.py,sha256=hzeQZ3P7ij_bfskoVMi10Iv5S4i_6TQYfnB8PXTX6c4,1645
|
|
10
|
-
pyxcp/utils.py,sha256=cHb5RUNim90U1U_a4axRmfa2n_xhFdjqHoRBEODoscs,3404
|
|
11
|
-
pyxcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
pyxcp/errormatrix.py,sha256=cYcsJ11Qm39DPuaR4BJ9fMpS3Hkphd_ezIQOKjI-pQE,44586
|
|
13
|
-
pyxcp/asamkeydll,sha256=gN2rba8QriwZO9AZ_cUdmf8TS48P1vjonaaAN3bc9gk,50584
|
|
14
|
-
pyxcp/asam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
pyxcp/asam/types.py,sha256=V4wSCGI1pXn0EsBemDyaHTBgY2wkV_BeLShnDIGGgDE,2310
|
|
16
|
-
pyxcp/daq_stim/stim.cpython-312-darwin.so,sha256=jduyfSIFTpWrAV47wGzJL3tzoZfkfVmDMeFl64P_oTo,237880
|
|
17
|
-
pyxcp/daq_stim/stim.cpp,sha256=sABgEfbQlt5kXbzAsndyhaDFWRWTJw3jJlNfanIVrRs,164
|
|
18
|
-
pyxcp/daq_stim/__init__.py,sha256=7Lly_Sn2SQljadGyY9pcDqTYNIkw8O_t7GVlCZDL2wQ,12171
|
|
19
|
-
pyxcp/daq_stim/scheduler.cpp,sha256=2XW9PmxrJR8DfYMVszGwBX-KANVviwPcUNBvnjw5MlM,1443
|
|
20
|
-
pyxcp/daq_stim/stim.cpython-313-darwin.so,sha256=IX8coHUbNwfIvIDCQAeGmUJIZNSeAs9cvZe6Sm1VvMI,238120
|
|
21
|
-
pyxcp/daq_stim/stim.hpp,sha256=1DwAhkY7XJN14aD2BxLJ4O1j4_a6RvpePIbAG1U8iOA,17904
|
|
22
|
-
pyxcp/daq_stim/stim.cpython-310-darwin.so,sha256=ciy3m3t6O2ijjYa190hWupKTv4NYSe6xs7EipP3FBFk,237816
|
|
23
|
-
pyxcp/daq_stim/scheduler.hpp,sha256=H-kwyZBV3S8q6YlCq6OLUbaNXskyCOS4z3SRP32ikPY,1809
|
|
24
|
-
pyxcp/daq_stim/stim_wrapper.cpp,sha256=7iL1-4BPavo5bfrph20Fvicn6HxGEZQqYLvdxniJBYU,1945
|
|
25
|
-
pyxcp/daq_stim/stim.cpython-311-darwin.so,sha256=aahyParbpwhlB-BuKK1ZPOP8oiNfNFaserUsVLZ9XHE,237896
|
|
26
|
-
pyxcp/daq_stim/optimize/__init__.py,sha256=joAKvAvlYQEi7VF2oVftn_ohgRO231wnc3e8fY231L4,2453
|
|
27
|
-
pyxcp/daq_stim/optimize/binpacking.py,sha256=AZHABtAnzBVJ-MVUGLrxuAp_bAtv3C-gMxrXXXrgi-Y,1216
|
|
28
|
-
pyxcp/transport/transport_wrapper.cpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
pyxcp/transport/eth.py,sha256=IXq_BB2LP5OguqUzNPZdnMxn0gUOf9gnIdiNGgel204,9771
|
|
30
|
-
pyxcp/transport/sxi.py,sha256=gbFTOA-O0q0RwZUbRgN3hCdkoutxMt15TgVjVwdvWsY,4625
|
|
31
|
-
pyxcp/transport/base_transport.hpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
pyxcp/transport/__init__.py,sha256=wIeYkGygucYdXEzymJcDvimnwZgqJY8KRv7Mk__aUSU,428
|
|
33
|
-
pyxcp/transport/usb_transport.py,sha256=27c19S67BMq1Eup6ViX-SiYpEq93bMTwe031RsE4Xm0,8130
|
|
34
|
-
pyxcp/transport/can.py,sha256=fE0k6GlBt913EVQh3Wpd781cikT5ht7Q8lAiU4En3tc,21283
|
|
35
|
-
pyxcp/transport/base.py,sha256=pq8PwgGb8ex9WC_mDNBFs_qKRZZl8O2pzK1fAjZaIyk,22604
|
|
36
|
-
pyxcp/config/legacy.py,sha256=Uhu_6bp_W8yGmZ2s3TFzf8-5mGwLdeTss56BMYWpsZY,5100
|
|
37
|
-
pyxcp/config/__init__.py,sha256=rG-HPWJMPbxs6fu4-TpV4Gbctg7Nz9Jmogm6FMPSqlY,48274
|
|
38
|
-
pyxcp/tests/test_utils.py,sha256=gqv3bhhWfKKdKDkqnELqsOHCfpRRZwlReEy87Ya4Z2w,850
|
|
39
|
-
pyxcp/tests/test_master.py,sha256=a_Q8Fa49y_3vnrp-VFZ-22cHWjq58RC2daF6EcfbhZc,69434
|
|
40
|
-
pyxcp/tests/test_daq.py,sha256=mThMsweEwxzIFRQQ88BNz_60OQ-xmC5OamIxHx9VWis,5358
|
|
41
|
-
pyxcp/tests/test_binpacking.py,sha256=BKgIGZDv_RjZOjNvbzEcjonQ4_QZHMZjn7_YPOfHdUI,7437
|
|
42
|
-
pyxcp/tests/test_asam_types.py,sha256=olmvcmEVRb4Oar2mOnCTN4qCdM3w6SoKmBpjwHfKwO8,563
|
|
43
|
-
pyxcp/tests/test_checksum.py,sha256=rkkdLPH4But4wPxlRtVOC4Wd5kCH2suU4Dle6-HXHTk,1713
|
|
44
|
-
pyxcp/tests/test_frame_padding.py,sha256=soGk99lWVN7oju_5F84HEBQ1V_zwH-4xh_hTPBgVp54,3049
|
|
45
|
-
pyxcp/tests/test_daq_opt.py,sha256=plhoUEJmf39kRVkH-17TvFIeyGTt7DljMqdw2eO6Yjg,12585
|
|
46
|
-
pyxcp/tests/test_transport.py,sha256=nFw0hR9ZKdEo4eIyg0vkxgB9ZlQPHari8lo7TJ1dzQE,2406
|
|
47
|
-
pyxcp/tests/test_can.py,sha256=bAhtFxXQcNJ6xDO-RHLHbRVTa7eDXd8WrO1SqMJp6P8,62672
|
|
48
|
-
pyxcp/aml/ifdata_CAN.a2l,sha256=c7GbbYyyXSdpmCBok4AdqU17OdiiHGguhZqhenD-UhI,592
|
|
49
|
-
pyxcp/aml/EtasCANMonitoring.a2l,sha256=at5QlrKbdY2JqkPpQ9b7cfHsYD62DKc_H3-IezQJGuE,1427
|
|
50
|
-
pyxcp/aml/ifdata_Eth.a2l,sha256=ip_6mV2wPL0Eec9tD2sAxMxMnK5AzbnvAxHljsLe57U,239
|
|
51
|
-
pyxcp/aml/XCPonSxI.aml,sha256=CBP3GrneqIjCNqi2p23cp6jsietHBLpNj15bQXb6naM,3235
|
|
52
|
-
pyxcp/aml/ifdata_USB.a2l,sha256=eoHTtynoySh963g8R-1UR4vpKh-3oXEE5pXfSYZWDUc,3575
|
|
53
|
-
pyxcp/aml/XCP_Common.aml,sha256=BVIVvAMi6QuFWtSj728a-Fl7V_GCXyNbewZzUtD-LTM,15037
|
|
54
|
-
pyxcp/aml/ifdata_Flx.a2l,sha256=_MNdBmTgCdFlGV7lkS-cAduwz6PQNOttKdjrj09bQkc,1797
|
|
55
|
-
pyxcp/aml/EtasCANMonitoring.aml,sha256=Bqg1tt_pemaeqGO4Qq6rlb7nhRoPIzPYnVppDqX2egg,2338
|
|
56
|
-
pyxcp/aml/XCPonCAN.aml,sha256=Ml4Mgf6Ky_oz3KrytrgOUAMFiRiXJBJwRajr0FWgcco,3771
|
|
57
|
-
pyxcp/aml/XCPonEth.aml,sha256=GfvkqVX4MqnAkUicjd-XVw4z2O3YtMag_A3b5isgcBE,2214
|
|
58
|
-
pyxcp/aml/XCPonUSB.aml,sha256=rPGduH-PE8-tBeELSm3vfkbf62uhlVP6gvJL0OvMclc,4847
|
|
59
|
-
pyxcp/aml/ifdata_SxI.a2l,sha256=8rAB6HTTAuNlFSrkFpR7fUA702yN4rTTNkw-xspZNV0,303
|
|
60
|
-
pyxcp/aml/XCPonFlx.aml,sha256=z58FMu6ZF4hVun8WBCuxvDrq6FZ_gj3tZM15G7E8Uvw,4647
|
|
61
|
-
pyxcp/master/__init__.py,sha256=o3XB9GDwLiqh-KRFC9YTOd0EvxJXDpyrcVxebiwT934,309
|
|
62
|
-
pyxcp/master/master.py,sha256=oft1aNYqmilFZ00ZI7aO5lPaxXg5-Act6ji23x3bc6U,76980
|
|
63
|
-
pyxcp/master/errorhandler.py,sha256=7EftfxWYqRyXurJEZS8PAyXVHs_e4qV8uWsUOMuE2Ug,19402
|
|
64
|
-
pyxcp/examples/xcp_read_benchmark.py,sha256=Hl0hrjV3FE-ivswvYOh0MsKiHnk03z7w8lQDYnvfeM8,918
|
|
65
|
-
pyxcp/examples/conf_eth.toml,sha256=b6bKN-K07gMQHNj7yiyB-HKrkVtZREgPXS4ByQueBs4,190
|
|
66
|
-
pyxcp/examples/xcphello_recorder.py,sha256=wL92d0dbPkjFzCT08JoRD9Mg2D6QbOpOzFDgSYdcNog,3302
|
|
67
|
-
pyxcp/examples/conf_nixnet.json,sha256=R-RKw172YhssO_9rud5McxtjesphEadA9Ub2OEKHpGM,424
|
|
68
|
-
pyxcp/examples/conf_sxi.json,sha256=rDh7LyaqtvYoYjMaVo1gqEkS_hiTGdXlW4O6ivzGhFo,149
|
|
69
|
-
pyxcp/examples/conf_can_vector.json,sha256=VtGmyt9ORPTo9yirv1fZM_XT9DARFFNwai11RaCNRWo,238
|
|
70
|
-
pyxcp/examples/conf_can_user.toml,sha256=BqCID-GvaNbA6pbqRbyRMuzKAsJaYVube0ql4CvkMoY,298
|
|
71
|
-
pyxcp/examples/xcp_user_supplied_driver.py,sha256=Wyep2KhtcFC2GzZuJPj5ikSqWIWYsf5D0mfs1jCtYX0,1104
|
|
72
|
-
pyxcp/examples/xcp_skel.py,sha256=F2g2C79jiYZl0cpRHfzWusfn1ZvodOS_r1Az6aknZL4,1110
|
|
73
|
-
pyxcp/examples/xcp_unlock.py,sha256=vl2Zv7Z6EuBxI2ZxbGQK6-0tZBVqd72FZllsvIfuJ5w,652
|
|
74
|
-
pyxcp/examples/xcphello.py,sha256=JK9U_QkFP0AwKlZK9lFB66GAqUDFRoXL3XMYO5EdRQQ,2550
|
|
75
|
-
pyxcp/examples/run_daq.py,sha256=4AMsBAKmeyk7IIVjtyOB21cB7ANhcTg4hVhRBmYbutk,5509
|
|
76
|
-
pyxcp/examples/conf_socket_can.toml,sha256=JB9zHHaya2mDXf0zPY7zEKiBDX2chzBBRxt7h3LxxDk,257
|
|
77
|
-
pyxcp/examples/conf_sxi.toml,sha256=r81OD0mCLk_h7vrN5MBJk0HFbiWi3bQZtFgFVrW6qcM,118
|
|
78
|
-
pyxcp/examples/conf_can.toml,sha256=oGkZYgmcpPsJ6YKGELm6DqF-hNvokJHCq99LAqxCyso,351
|
|
79
|
-
pyxcp/examples/conf_can_vector.toml,sha256=kKaYPum6MbN5s3zFc6rn232grpAM5QTwrQARODg5d9k,251
|
|
80
|
-
pyxcp/examples/xcp_policy.py,sha256=GUoqBH373gbWu-_L-lSF25vTbJiG2ZI-SQ2WLzAnjlo,1861
|
|
81
|
-
pyxcp/scripts/xcp_id_scanner.py,sha256=fRNtjQYMc3Rn8ZurOTBUvPp7JJdmIVCHvZiuoX70ytU,402
|
|
82
|
-
pyxcp/scripts/xmraw_converter.py,sha256=W_Znm5OzBKfcyiUgwHIaLYdc2DEusX6jv2b03KAHYrk,653
|
|
83
|
-
pyxcp/scripts/xcp_profile.py,sha256=5IoBMv8tV64nxKCVaJ4bBF7dl3_fqqsQ2tr0OoM87Vw,588
|
|
84
|
-
pyxcp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
pyxcp/scripts/xcp_fetch_a2l.py,sha256=tLdrU03xmnfz_-FeYSq-TH5ZsDLvpQRBvXpO5NZZohU,1199
|
|
86
|
-
pyxcp/scripts/xcp_info.py,sha256=vXGNjO8tFJhiudp9ItZ9946NIRStj4brEpY4nNo9bTo,5505
|
|
87
|
-
pyxcp/scripts/xcp_examples.py,sha256=rsvpb6moMhBxAcP5hBnHug9x-6i65WVwL5Q_tHty59c,2519
|
|
88
|
-
pyxcp/scripts/pyxcp_probe_can_drivers.py,sha256=qnNLYa6hInzNrVyYh7xXYt_SB5b-tgMJHXJwIkz7lbE,547
|
|
89
|
-
pyxcp/recorder/build_gcc_arm.sh,sha256=spqHf6D8Jd4NACYG65SNjb-BLMntELwBDO4PpHUiyYc,238
|
|
90
|
-
pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
pyxcp/recorder/mio.hpp,sha256=emP4qMXTxOe1wRSkB_U0hgOVz4aMUgG5dqcCvNNkAjs,61632
|
|
92
|
-
pyxcp/recorder/build_gcc.cmd,sha256=A1xt8AS7VZxjJq21VzX8cOT7wl9ap_AIXBWbcIEddCw,237
|
|
93
|
-
pyxcp/recorder/writer.hpp,sha256=rNjtRTtJes5z-BzKR2K56P_Kvc9MEVQgycu8J0wKf1g,11284
|
|
94
|
-
pyxcp/recorder/rekorder.cpython-310-darwin.so,sha256=PNu2Ia-840OOqGimFLw5PNefbMeBGfAOK-cPOygRutE,529792
|
|
95
|
-
pyxcp/recorder/lz4hc.c,sha256=GhoLtpQF6ViHkhQ_TaLw9UCzSB_MO-fdflgjR_xFFfM,86829
|
|
96
|
-
pyxcp/recorder/lz4.h,sha256=BkRLAtxukE15Z2yO0Pjrq-n6hw5W6jkGFR5f14MzpEU,45604
|
|
97
|
-
pyxcp/recorder/rekorder.cpp,sha256=LtN3Ud_pigNZ70gJ5-tyFJZN-3PMDVwqbbH694--TxQ,1841
|
|
98
|
-
pyxcp/recorder/wrap.cpp,sha256=T4cwpmjhYbr75Q3plQpJTkNLyKE4lL0W7GC-8QSURJ8,8666
|
|
99
|
-
pyxcp/recorder/build_clang.sh,sha256=TZHpQZbRE6M6vHf_ln5laO9tyREUbMu-HAw0VDGx5yw,179
|
|
100
|
-
pyxcp/recorder/reader.hpp,sha256=rr9XZ_ciL6eF2_xEqyt9XYNqTIze9ytAsnf8uYukO9U,5201
|
|
101
|
-
pyxcp/recorder/__init__.py,sha256=HA8U6V85vbgZNWyNvJlY8l77YeTO0tHWl3t1v9DvjkQ,2846
|
|
102
|
-
pyxcp/recorder/test_reko.py,sha256=sIM_BBY9sq1ZUTawoxmDzdtd5qHPT9w6eVYZoY4iFik,980
|
|
103
|
-
pyxcp/recorder/build_clang.cmd,sha256=vIWwC1zF_WChakjfj8VaUCN6X8HwyqvGgFRdUub1TtE,174
|
|
104
|
-
pyxcp/recorder/rekorder.cpython-311-darwin.so,sha256=LUHZe4_XGEkgfccXfm1FGsfQ9f9reCEngmgBlx7_dAQ,529936
|
|
105
|
-
pyxcp/recorder/reco.py,sha256=SAO_XMKSBWHhdzxfkmV9ZoPvJjale4BGi8O9p5Sd_iE,8448
|
|
106
|
-
pyxcp/recorder/setup.py,sha256=piwBqaIX6SY1CyjKlantmd3I_VS6rk56sELvmPguKNM,957
|
|
107
|
-
pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
|
|
108
|
-
pyxcp/recorder/lz4hc.h,sha256=U_uN3Q2wIi3_dbEceJ16xHJZGotUiBTcnL6O5ARPi8M,20179
|
|
109
|
-
pyxcp/recorder/rekorder.cpython-312-darwin.so,sha256=MvQAN8fZPY_XZKoagVKO8l-52X-wcVnvomm2nB5UtIY,529936
|
|
110
|
-
pyxcp/recorder/lz4.c,sha256=k5b33lJ7yENd6cdWn7eZjlZUWoS088LYCMAjXAF3RTk,118145
|
|
111
|
-
pyxcp/recorder/build_gcc.sh,sha256=uvMhL4faEJmhG_8rzSOxEBRRqrACC0kmZgaERN8GkUs,209
|
|
112
|
-
pyxcp/recorder/rekorder.cpython-313-darwin.so,sha256=K7ljMeJX-eoaxxDhGQPG-gs3T1S16zg188c22EbkuXw,530192
|
|
113
|
-
pyxcp/recorder/unfolder.hpp,sha256=KDmRM0FRs3w-yFeS7-e5u743HKinE8v8sbh3_6RnCQ4,48002
|
|
114
|
-
pyxcp/recorder/converter/__init__.py,sha256=mqzH3jxGpFrtS2dHyfDLCYKeJycav3_-6z8svlI07eU,14452
|
|
115
|
-
pyxcp/stim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
-
pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
-
pyxcp/vector/map.py,sha256=dSxM15eXvZh6izITdJmFxr1rplDUlfaJUbtrm2Xv-dE,2224
|
|
118
|
-
pyxcp/cpp_ext/event.hpp,sha256=X2_ThYx8fzz-XR9McmsKM2Hb9I2x7XZeQGy1OyUs6iE,1133
|
|
119
|
-
pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so,sha256=WfHchUvQUl2Yhq3ujZ6fv28Eo523cazOepNIjkghIQs,321680
|
|
120
|
-
pyxcp/cpp_ext/blockmem.hpp,sha256=wSUDTgwO9zNn0c29hZ_MRH7cHDIFKma2MYVxip9ARNE,1184
|
|
121
|
-
pyxcp/cpp_ext/mcobject.hpp,sha256=A5GKcfjYMcfm3hfTQfFuS4JYNFTvfmzAcMXCe01GOs4,6429
|
|
122
|
-
pyxcp/cpp_ext/tsqueue.hpp,sha256=PuDd0kmj61afjW0yva6T8pZL3m4fPCeWsuvEyx2M-80,980
|
|
123
|
-
pyxcp/cpp_ext/extension_wrapper.cpp,sha256=XHpMp0e1gNwAiNquAXuyd2fXnlqbEu5V7zCP_SNvWKs,4755
|
|
124
|
-
pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so,sha256=UKficUShWGdbsoxPhUFPOaYUS4dkqnJ-HvWn3DTcXjw,321440
|
|
125
|
-
pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
-
pyxcp/cpp_ext/helper.hpp,sha256=ONAsVupIqqmNDp8bgGWS0TfSYeCFkk3kwwZbbqsh0HQ,7813
|
|
127
|
-
pyxcp/cpp_ext/bin.hpp,sha256=0CatarJ7jFewlg9EIxsDPxC4wnORHutx-1PLHpf9iqw,2457
|
|
128
|
-
pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so,sha256=82Sn7HnIHykqhK8Any97PvcZiUbrA4XMVbG0ExGHRJ0,321424
|
|
129
|
-
pyxcp/cpp_ext/daqlist.hpp,sha256=Q1Gejo8i1rP2PzyUh4UHJ2z-kG0WNnkbBj7N8DAdzaM,7071
|
|
130
|
-
pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so,sha256=qPV9eNVkRL8z10bnT72IPS_ycDt92S_E2P2fUrctwOQ,321344
|
|
131
|
-
pyxcp-0.23.8.dist-info/RECORD,,
|
|
132
|
-
pyxcp-0.23.8.dist-info/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
|
|
133
|
-
pyxcp-0.23.8.dist-info/WHEEL,sha256=F-Ac6CTANed3x6yT1zUARTuatIT2Q9bQ5nEN9psYMVw,134
|
|
134
|
-
pyxcp-0.23.8.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
|
|
135
|
-
pyxcp-0.23.8.dist-info/METADATA,sha256=8wRiL3ofoAwld1lCnzIsPh6NDt0UWmZPZIj50dcOPTA,12718
|
|
File without changes
|
|
File without changes
|