pyxcp 0.22.33__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.

Potentially problematic release.


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

Files changed (134) hide show
  1. pyxcp/__init__.py +20 -0
  2. pyxcp/aml/EtasCANMonitoring.a2l +82 -0
  3. pyxcp/aml/EtasCANMonitoring.aml +67 -0
  4. pyxcp/aml/XCP_Common.aml +408 -0
  5. pyxcp/aml/XCPonCAN.aml +78 -0
  6. pyxcp/aml/XCPonEth.aml +33 -0
  7. pyxcp/aml/XCPonFlx.aml +113 -0
  8. pyxcp/aml/XCPonSxI.aml +66 -0
  9. pyxcp/aml/XCPonUSB.aml +106 -0
  10. pyxcp/aml/ifdata_CAN.a2l +20 -0
  11. pyxcp/aml/ifdata_Eth.a2l +11 -0
  12. pyxcp/aml/ifdata_Flx.a2l +94 -0
  13. pyxcp/aml/ifdata_SxI.a2l +13 -0
  14. pyxcp/aml/ifdata_USB.a2l +81 -0
  15. pyxcp/asam/__init__.py +0 -0
  16. pyxcp/asam/types.py +131 -0
  17. pyxcp/asamkeydll.c +116 -0
  18. pyxcp/asamkeydll.sh +2 -0
  19. pyxcp/checksum.py +732 -0
  20. pyxcp/cmdline.py +52 -0
  21. pyxcp/config/__init__.py +1102 -0
  22. pyxcp/config/legacy.py +120 -0
  23. pyxcp/constants.py +47 -0
  24. pyxcp/cpp_ext/__init__.py +0 -0
  25. pyxcp/cpp_ext/bin.hpp +104 -0
  26. pyxcp/cpp_ext/blockmem.hpp +58 -0
  27. pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so +0 -0
  28. pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so +0 -0
  29. pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so +0 -0
  30. pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so +0 -0
  31. pyxcp/cpp_ext/daqlist.hpp +206 -0
  32. pyxcp/cpp_ext/event.hpp +67 -0
  33. pyxcp/cpp_ext/extension_wrapper.cpp +100 -0
  34. pyxcp/cpp_ext/helper.hpp +280 -0
  35. pyxcp/cpp_ext/mcobject.hpp +246 -0
  36. pyxcp/cpp_ext/tsqueue.hpp +46 -0
  37. pyxcp/daq_stim/__init__.py +232 -0
  38. pyxcp/daq_stim/optimize/__init__.py +67 -0
  39. pyxcp/daq_stim/optimize/binpacking.py +41 -0
  40. pyxcp/daq_stim/scheduler.cpp +28 -0
  41. pyxcp/daq_stim/scheduler.hpp +75 -0
  42. pyxcp/daq_stim/stim.cpp +13 -0
  43. pyxcp/daq_stim/stim.cpython-310-darwin.so +0 -0
  44. pyxcp/daq_stim/stim.cpython-311-darwin.so +0 -0
  45. pyxcp/daq_stim/stim.cpython-312-darwin.so +0 -0
  46. pyxcp/daq_stim/stim.cpython-313-darwin.so +0 -0
  47. pyxcp/daq_stim/stim.hpp +604 -0
  48. pyxcp/daq_stim/stim_wrapper.cpp +50 -0
  49. pyxcp/dllif.py +95 -0
  50. pyxcp/errormatrix.py +878 -0
  51. pyxcp/examples/conf_can.toml +19 -0
  52. pyxcp/examples/conf_can_user.toml +16 -0
  53. pyxcp/examples/conf_can_vector.json +11 -0
  54. pyxcp/examples/conf_can_vector.toml +11 -0
  55. pyxcp/examples/conf_eth.toml +9 -0
  56. pyxcp/examples/conf_nixnet.json +20 -0
  57. pyxcp/examples/conf_socket_can.toml +12 -0
  58. pyxcp/examples/conf_sxi.json +9 -0
  59. pyxcp/examples/conf_sxi.toml +7 -0
  60. pyxcp/examples/run_daq.py +163 -0
  61. pyxcp/examples/xcp_policy.py +60 -0
  62. pyxcp/examples/xcp_read_benchmark.py +38 -0
  63. pyxcp/examples/xcp_skel.py +49 -0
  64. pyxcp/examples/xcp_unlock.py +38 -0
  65. pyxcp/examples/xcp_user_supplied_driver.py +54 -0
  66. pyxcp/examples/xcphello.py +79 -0
  67. pyxcp/examples/xcphello_recorder.py +107 -0
  68. pyxcp/master/__init__.py +9 -0
  69. pyxcp/master/errorhandler.py +442 -0
  70. pyxcp/master/master.py +2046 -0
  71. pyxcp/py.typed +0 -0
  72. pyxcp/recorder/__init__.py +101 -0
  73. pyxcp/recorder/build_clang.cmd +1 -0
  74. pyxcp/recorder/build_clang.sh +2 -0
  75. pyxcp/recorder/build_gcc.cmd +1 -0
  76. pyxcp/recorder/build_gcc.sh +2 -0
  77. pyxcp/recorder/build_gcc_arm.sh +2 -0
  78. pyxcp/recorder/converter/__init__.py +451 -0
  79. pyxcp/recorder/lz4.c +2829 -0
  80. pyxcp/recorder/lz4.h +879 -0
  81. pyxcp/recorder/lz4hc.c +2041 -0
  82. pyxcp/recorder/lz4hc.h +413 -0
  83. pyxcp/recorder/mio.hpp +1714 -0
  84. pyxcp/recorder/reader.hpp +139 -0
  85. pyxcp/recorder/reco.py +277 -0
  86. pyxcp/recorder/recorder.rst +0 -0
  87. pyxcp/recorder/rekorder.cpp +59 -0
  88. pyxcp/recorder/rekorder.cpython-310-darwin.so +0 -0
  89. pyxcp/recorder/rekorder.cpython-311-darwin.so +0 -0
  90. pyxcp/recorder/rekorder.cpython-312-darwin.so +0 -0
  91. pyxcp/recorder/rekorder.cpython-313-darwin.so +0 -0
  92. pyxcp/recorder/rekorder.hpp +274 -0
  93. pyxcp/recorder/setup.py +41 -0
  94. pyxcp/recorder/test_reko.py +34 -0
  95. pyxcp/recorder/unfolder.hpp +1332 -0
  96. pyxcp/recorder/wrap.cpp +189 -0
  97. pyxcp/recorder/writer.hpp +302 -0
  98. pyxcp/scripts/__init__.py +0 -0
  99. pyxcp/scripts/pyxcp_probe_can_drivers.py +20 -0
  100. pyxcp/scripts/xcp_examples.py +64 -0
  101. pyxcp/scripts/xcp_fetch_a2l.py +40 -0
  102. pyxcp/scripts/xcp_id_scanner.py +19 -0
  103. pyxcp/scripts/xcp_info.py +146 -0
  104. pyxcp/scripts/xcp_profile.py +27 -0
  105. pyxcp/scripts/xmraw_converter.py +31 -0
  106. pyxcp/stim/__init__.py +0 -0
  107. pyxcp/tests/test_asam_types.py +24 -0
  108. pyxcp/tests/test_binpacking.py +186 -0
  109. pyxcp/tests/test_can.py +1324 -0
  110. pyxcp/tests/test_checksum.py +95 -0
  111. pyxcp/tests/test_daq.py +193 -0
  112. pyxcp/tests/test_daq_opt.py +426 -0
  113. pyxcp/tests/test_frame_padding.py +156 -0
  114. pyxcp/tests/test_master.py +2006 -0
  115. pyxcp/tests/test_transport.py +81 -0
  116. pyxcp/tests/test_utils.py +30 -0
  117. pyxcp/timing.py +60 -0
  118. pyxcp/transport/__init__.py +10 -0
  119. pyxcp/transport/base.py +440 -0
  120. pyxcp/transport/base_transport.hpp +0 -0
  121. pyxcp/transport/can.py +441 -0
  122. pyxcp/transport/eth.py +219 -0
  123. pyxcp/transport/sxi.py +135 -0
  124. pyxcp/transport/transport_wrapper.cpp +0 -0
  125. pyxcp/transport/usb_transport.py +213 -0
  126. pyxcp/types.py +1000 -0
  127. pyxcp/utils.py +127 -0
  128. pyxcp/vector/__init__.py +0 -0
  129. pyxcp/vector/map.py +82 -0
  130. pyxcp-0.22.33.dist-info/LICENSE +165 -0
  131. pyxcp-0.22.33.dist-info/METADATA +107 -0
  132. pyxcp-0.22.33.dist-info/RECORD +134 -0
  133. pyxcp-0.22.33.dist-info/WHEEL +6 -0
  134. pyxcp-0.22.33.dist-info/entry_points.txt +9 -0
pyxcp/utils.py ADDED
@@ -0,0 +1,127 @@
1
+ #!/usr/bin/env python
2
+ import datetime
3
+ from enum import IntEnum
4
+ import functools
5
+ import operator
6
+ import sys
7
+ from binascii import hexlify
8
+ from time import perf_counter, sleep
9
+
10
+ import chardet
11
+ import pytz
12
+
13
+ from pyxcp.cpp_ext.cpp_ext import TimestampInfo
14
+
15
+
16
+ def hexDump(arr):
17
+ if isinstance(arr, (bytes, bytearray)):
18
+ size = len(arr)
19
+ try:
20
+ arr = arr.hex()
21
+ except BaseException: # noqa: B036
22
+ arr = hexlify(arr).decode("ascii")
23
+ return "[{}]".format(" ".join([arr[i * 2 : (i + 1) * 2] for i in range(size)]))
24
+ elif isinstance(arr, (list, tuple)):
25
+ arr = bytes(arr)
26
+ size = len(arr)
27
+ try:
28
+ arr = arr.hex()
29
+ except BaseException: # noqa: B036
30
+ arr = hexlify(arr).decode("ascii")
31
+ return "[{}]".format(" ".join([arr[i * 2 : (i + 1) * 2] for i in range(size)]))
32
+ else:
33
+ return "[{}]".format(" ".join([f"{x:02x}" for x in arr]))
34
+
35
+
36
+ def seconds_to_nanoseconds(value: float) -> int:
37
+ return int(value * 1_000_000_000)
38
+
39
+
40
+ def slicer(iterable, sliceLength, converter=None):
41
+ if converter is None:
42
+ converter = type(iterable)
43
+ length = len(iterable)
44
+ return [converter(iterable[item : item + sliceLength]) for item in range(0, length, sliceLength)]
45
+
46
+
47
+ def functools_reduce_iconcat(a):
48
+ return functools.reduce(operator.iconcat, a, [])
49
+
50
+
51
+ def flatten(*args):
52
+ """Flatten a list of lists into a single list.
53
+
54
+ s. https://stackoverflow.com/questions/952914/how-do-i-make-a-flat-list-out-of-a-list-of-lists
55
+ """
56
+ return functools.reduce(operator.iconcat, args, [])
57
+
58
+
59
+ def getPythonVersion():
60
+ return sys.version_info
61
+
62
+
63
+ def decode_bytes(byte_str: bytes) -> str:
64
+ """Decode bytes with the help of chardet"""
65
+ encoding = chardet.detect(byte_str).get("encoding")
66
+ if not encoding:
67
+ return byte_str.decode("ascii", "ignore")
68
+ else:
69
+ return byte_str.decode(encoding)
70
+
71
+
72
+ PYTHON_VERSION = getPythonVersion()
73
+
74
+
75
+ def short_sleep():
76
+ sleep(0.0005)
77
+
78
+
79
+ def delay(amount: float):
80
+ """Performe a busy-wait delay, which is much more precise than `time.sleep`"""
81
+
82
+ start = perf_counter()
83
+ while perf_counter() < start + amount:
84
+ pass
85
+
86
+
87
+ class CurrentDatetime(TimestampInfo):
88
+
89
+ def __init__(self, timestamp_ns: int):
90
+ TimestampInfo.__init__(self, timestamp_ns)
91
+ timezone = pytz.timezone(self.timezone)
92
+ dt = datetime.datetime.fromtimestamp(timestamp_ns / 1_000_000_000.0)
93
+ self.utc_offset = int(timezone.utcoffset(dt).total_seconds() / 60)
94
+ self.dst_offset = int(timezone.dst(dt).total_seconds() / 60)
95
+
96
+ def __str__(self):
97
+ return f"""CurrentDatetime(
98
+ datetime="{datetime.datetime.fromtimestamp(self.timestamp_ns / 1_000_000_000.0)!s}",
99
+ timezone="{self.timezone}",
100
+ timestamp_ns={self.timestamp_ns},
101
+ utc_offset={self.utc_offset},
102
+ dst_offset={self.dst_offset}
103
+ )"""
104
+
105
+
106
+ def enum_from_str(enum_class: IntEnum, enumerator: str) -> IntEnum:
107
+ """Create an `IntEnum` instance from an enumerator `str`.
108
+
109
+ Parameters
110
+ ----------
111
+ enum_class: IntEnum
112
+
113
+ enumerator: str
114
+
115
+ Example
116
+ -------
117
+
118
+ class Color(enum.IntEnum):
119
+ RED = 0
120
+ GREEN = 1
121
+ BLUE = 2
122
+
123
+ color: Color = enum_from_str(Color, "GREEN")
124
+
125
+
126
+ """
127
+ return enum_class(enum_class.__members__.get(enumerator))
File without changes
pyxcp/vector/map.py ADDED
@@ -0,0 +1,82 @@
1
+ #!/usr/bin/env python
2
+
3
+ MAP_NAMES = {
4
+ 1: "BorlandC 16 Bit",
5
+ 2: "M166",
6
+ 3: "Watcom",
7
+ 4: "HiTech HC05",
8
+ 6: "IEEE",
9
+ 7: "Cosmic",
10
+ 8: "SDS",
11
+ 9: "Fujitsu Softune 1(.mp1)",
12
+ 10: "GNU",
13
+ 11: "Keil 16x",
14
+ 12: "BorlandC 32 Bit",
15
+ 13: "Keil 16x (static)",
16
+ 14: "Keil 8051",
17
+ 15: "ISI",
18
+ 16: "Hiware HC12",
19
+ 17: "TI TMS470",
20
+ 18: "Archimedes",
21
+ 19: "COFF",
22
+ 20: "IAR",
23
+ 21: "VisualDSP",
24
+ 22: "GNU 16x",
25
+ 23: "GNU VxWorks",
26
+ 24: "GNU 68k",
27
+ 25: "DiabData",
28
+ 26: "VisualDSP DOS",
29
+ 27: "HEW SH7055",
30
+ 28: "Metrowerks",
31
+ 29: "Microsoft standard",
32
+ 30: "ELF/DWARF 16 Bit",
33
+ 31: "ELF/DWARF 32 Bit",
34
+ 32: "Fujitsu Softune 3..8(.mps)",
35
+ 33: "Microware Hawk",
36
+ 34: "TI C6711",
37
+ 35: "Hitachi H8S",
38
+ 36: "IAR HC12",
39
+ 37: "Greenhill Multi 2000",
40
+ 38: "LN308(MITSUBISHI) for M16C/80",
41
+ 39: "COFF settings auto detected",
42
+ 40: "NEC CC78K/0 v35",
43
+ 41: "Microsoft extended",
44
+ 42: "ICCAVR",
45
+ 43: "Omf96 (.m96)",
46
+ 44: "COFF/DWARF",
47
+ 45: "OMF96 Binary (Tasking C196)",
48
+ 46: "OMF166 Binary (Keil C166)",
49
+ 47: "Microware Hawk Plug&Play ASCII",
50
+ 48: "UBROF Binary (IAR)",
51
+ 49: "Renesas M32R/M32192 ASCII",
52
+ 50: "OMF251 Binary (Keil C251)",
53
+ 51: "Microsoft standard VC8",
54
+ 52: "Microsoft VC8 Release Build (MATLAB DLL)",
55
+ 53: "Microsoft VC8 Debug Build (MATLAB DLL)",
56
+ 54: "Microsoft VC8 Debug file (pdb)",
57
+ }
58
+
59
+ """
60
+ 3.0 Automatic detection sequence
61
+
62
+ - The master (CANape) sends the command GET_ID with the idType = 219 (0xDB hex) to the ECU
63
+ - The ECU sets the MTA (memory transfer address) pointer to the first byte of the data block containing the
64
+ MAP file identification and returns the number of bytes which need to be uploaded to the master as well as
65
+ the counter which defines the appropriate memory segment
66
+ - The master requests the specified number of bytes from the ECU by sending UPLOAD commands
67
+ - The master looks for the appropriate MAP file in the MAP file directory and updates the addresses in the
68
+ a2l file accordingly
69
+
70
+ Command sequence GET_ID
71
+
72
+ Id of the MAP format
73
+
74
+ Counter
75
+
76
+ MAP name
77
+
78
+ """
79
+
80
+
81
+ def mapfile_name(name, counter, fmt):
82
+ return f"{fmt:2d}{counter:d}{name:s}.map"
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
@@ -0,0 +1,107 @@
1
+ Metadata-Version: 2.3
2
+ Name: pyxcp
3
+ Version: 0.22.33
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.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Topic :: Scientific/Engineering
22
+ Classifier: Topic :: Software Development
23
+ Requires-Dist: bandit (>=1.7.8,<2.0.0)
24
+ Requires-Dist: chardet (>=5.2.0,<6.0.0)
25
+ Requires-Dist: construct (>=2.10.68,<3.0.0)
26
+ Requires-Dist: line-profiler-pycharm (>=1.1.0,<2.0.0)
27
+ Requires-Dist: mako (>=1.2.4,<2.0.0)
28
+ Requires-Dist: pyserial (>=3.5,<4.0)
29
+ Requires-Dist: python-can (>=4.2.2,<5.0.0)
30
+ Requires-Dist: pytz (>=2025.2,<2026.0)
31
+ Requires-Dist: pyusb (>=1.2.1,<2.0.0)
32
+ Requires-Dist: rich (>=14.0.0,<15.0.0)
33
+ Requires-Dist: toml (>=0.10.2,<0.11.0)
34
+ Requires-Dist: tomlkit (>=0.13.3,<0.14.0)
35
+ Requires-Dist: traitlets (<=5.11.2)
36
+ Requires-Dist: uptime (>=3.0.1,<4.0.0)
37
+ Project-URL: Homepage, https://github.com/christoph2/pyxcp
38
+ Description-Content-Type: text/markdown
39
+
40
+ # pyXCP
41
+
42
+ [![Codacy Badge](https://api.codacy.com/project/badge/Grade/85f774708b2542d98d02df55c743d24a)](https://app.codacy.com/app/christoph2/pyxcp?utm_source=github.com&utm_medium=referral&utm_content=christoph2/pyxcp&utm_campaign=Badge_Grade_Settings)
43
+ [![Maintainability](https://api.codeclimate.com/v1/badges/4c639f3695f2725e392a/maintainability)](https://codeclimate.com/github/christoph2/pyxcp/maintainability)
44
+ [![Build Status](https://github.com/christoph2/pyxcp/workflows/Python%20application/badge.svg)](https://github.com/christoph2/pyxcp/actions)
45
+ [![Build status](https://ci.appveyor.com/api/projects/status/r00l4i4co095e9ht?svg=true)](https://ci.appveyor.com/project/christoph2/pyxcp)
46
+ [![Coverage Status](https://coveralls.io/repos/github/christoph2/pyxcp/badge.svg?branch=master)](https://coveralls.io/github/christoph2/pyxcp?branch=master)
47
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
48
+ [![GPL License](http://img.shields.io/badge/license-GPL-blue.svg)](http://opensource.org/licenses/GPL-2.0)
49
+
50
+ pyXCP is a lightweight Python library which talks to ASAM MCD-1 XCP enabled devices.
51
+ These are mainly, but not only, automotive ECUs (Electronic Control Units).
52
+
53
+ XCP is used to take measurements, to adjust parameters, and to flash during the development process.
54
+
55
+ XCP also replaces the older CCP (CAN Calibration Protocol).
56
+
57
+ ---
58
+
59
+ ## Installation
60
+
61
+ pyXCP is hosted on Github, get the latest release: [https://github.com/christoph2/pyxcp](https://github.com/christoph2/pyxcp)
62
+
63
+ You can install pyxcp from source:
64
+
65
+ ```
66
+ pip install -r requirements.txt
67
+ python setup.py install
68
+ ```
69
+
70
+ Alternatively, you can install pyxcp from source with pip:
71
+
72
+ ```
73
+ pip install git+https://github.com/christoph2/pyxcp.git
74
+ ```
75
+
76
+ Alternatively, get pyxcp from [PyPI](https://pypi.org/project/pyxcp/):
77
+
78
+ ```
79
+ pip install pyxcp
80
+ ```
81
+
82
+ ### Requirements
83
+
84
+ - Python >= 3.7
85
+ - A running XCP slave (of course).
86
+ - If you are using a 64bit Windows version and want to use seed-and-key .dlls (to unlock resources), a GCC compiler capable of creating 32bit
87
+ executables is required:
88
+
89
+ These .dlls almost always ship as 32bit versions, but you can't load a 32bit .dll into a 64bit process, so a small bridging program (asamkeydll.exe) is
90
+ required.
91
+
92
+ ## First steps
93
+
94
+ T.B.D.
95
+
96
+ ## Features
97
+
98
+ T.B.D.
99
+
100
+ ## References
101
+
102
+ - [Offical home of XCP](https://www.asam.net/standards/detail/mcd-1-xcp/)
103
+
104
+ ## License
105
+
106
+ GNU Lesser General Public License v3 or later (LGPLv3+)
107
+
@@ -0,0 +1,134 @@
1
+ pyxcp-0.22.33.dist-info/RECORD,,
2
+ pyxcp-0.22.33.dist-info/LICENSE,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
3
+ pyxcp-0.22.33.dist-info/WHEEL,sha256=F-Ac6CTANed3x6yT1zUARTuatIT2Q9bQ5nEN9psYMVw,134
4
+ pyxcp-0.22.33.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
5
+ pyxcp-0.22.33.dist-info/METADATA,sha256=zHbq_bYJyscMuwsVQIVMmftnTjW2UyAb-aUog3Ywejo,4085
6
+ pyxcp/dllif.py,sha256=kQ2njvx2flt5_EpIvIhT82NLl_LXoKJVc40H7pRi_0U,3213
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=lNg_wedKShu_37RhuTIGlINGLSMrg6UqJmYpqQnJbQI,1477
12
+ pyxcp/__init__.py,sha256=3avbYsnOI83QI9CeqBD2d0RG5opFrCMDCZZ9xWj3PZY,528
13
+ pyxcp/types.py,sha256=XJxJUh9bK5Urfia8IHVLJ-NFgQACYBd_n73L-AaeZts,25158
14
+ pyxcp/timing.py,sha256=hzeQZ3P7ij_bfskoVMi10Iv5S4i_6TQYfnB8PXTX6c4,1645
15
+ pyxcp/utils.py,sha256=6WY4Jrdq3W6rYveR_U1JqfmKTWHkwg65LzrhJE6xbyc,3330
16
+ pyxcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ pyxcp/errormatrix.py,sha256=cYcsJ11Qm39DPuaR4BJ9fMpS3Hkphd_ezIQOKjI-pQE,44586
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=L9OoS4MPieqeyB-AkHf-lEp9vAw9sRH7HuVJr-i7sNI,237656
21
+ pyxcp/daq_stim/stim.cpp,sha256=sABgEfbQlt5kXbzAsndyhaDFWRWTJw3jJlNfanIVrRs,164
22
+ pyxcp/daq_stim/__init__.py,sha256=HAfOpn4yeb4DYNZHr6pzpFGHisXbKEytXJ6KUatDMTk,9328
23
+ pyxcp/daq_stim/scheduler.cpp,sha256=6YJV4IfKbIL9MJOVJqqabaeK5apUcFuDpwmoWRfyCSQ,687
24
+ pyxcp/daq_stim/stim.cpython-313-darwin.so,sha256=JckkNq4XWuV8DlLGKqhgeZFQhY3R_c7vqDScyInky0s,237896
25
+ pyxcp/daq_stim/stim.hpp,sha256=1DwAhkY7XJN14aD2BxLJ4O1j4_a6RvpePIbAG1U8iOA,17904
26
+ pyxcp/daq_stim/stim.cpython-310-darwin.so,sha256=RqFNsPbyPi8oHidN2ACHa6aPRQadF14q068jvjDhGKE,237576
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=oN-S3od2B7sR4AiyS-Bg0l9gohjT7Ne5ouula-mTGF8,237656
30
+ pyxcp/daq_stim/optimize/__init__.py,sha256=joAKvAvlYQEi7VF2oVftn_ohgRO231wnc3e8fY231L4,2453
31
+ pyxcp/daq_stim/optimize/binpacking.py,sha256=AZHABtAnzBVJ-MVUGLrxuAp_bAtv3C-gMxrXXXrgi-Y,1216
32
+ pyxcp/transport/transport_wrapper.cpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ pyxcp/transport/eth.py,sha256=V-jclzloRFz6LczPHmvS_RF1re_CcNQ7xsVBpgv2HNw,8492
34
+ pyxcp/transport/sxi.py,sha256=gbFTOA-O0q0RwZUbRgN3hCdkoutxMt15TgVjVwdvWsY,4625
35
+ pyxcp/transport/base_transport.hpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ pyxcp/transport/__init__.py,sha256=wIeYkGygucYdXEzymJcDvimnwZgqJY8KRv7Mk__aUSU,428
37
+ pyxcp/transport/usb_transport.py,sha256=27c19S67BMq1Eup6ViX-SiYpEq93bMTwe031RsE4Xm0,8130
38
+ pyxcp/transport/can.py,sha256=bzKV9Lh5suKdZ5dm3ZEz1osOqkRZNlxrVAW7vr38JSM,14485
39
+ pyxcp/transport/base.py,sha256=i9VdWqGNqx5LMdFkD8SmmMQSRoDDXAjMRS3p6KD1A8E,15912
40
+ pyxcp/config/legacy.py,sha256=Uhu_6bp_W8yGmZ2s3TFzf8-5mGwLdeTss56BMYWpsZY,5100
41
+ pyxcp/config/__init__.py,sha256=nToBy_zPFQZmCUgRZ1RUjlw-OulCcvoFuGFvPw242z8,41701
42
+ pyxcp/tests/test_utils.py,sha256=gqv3bhhWfKKdKDkqnELqsOHCfpRRZwlReEy87Ya4Z2w,850
43
+ pyxcp/tests/test_master.py,sha256=a_Q8Fa49y_3vnrp-VFZ-22cHWjq58RC2daF6EcfbhZc,69434
44
+ pyxcp/tests/test_daq.py,sha256=mThMsweEwxzIFRQQ88BNz_60OQ-xmC5OamIxHx9VWis,5358
45
+ pyxcp/tests/test_binpacking.py,sha256=BKgIGZDv_RjZOjNvbzEcjonQ4_QZHMZjn7_YPOfHdUI,7437
46
+ pyxcp/tests/test_asam_types.py,sha256=olmvcmEVRb4Oar2mOnCTN4qCdM3w6SoKmBpjwHfKwO8,563
47
+ pyxcp/tests/test_checksum.py,sha256=rkkdLPH4But4wPxlRtVOC4Wd5kCH2suU4Dle6-HXHTk,1713
48
+ pyxcp/tests/test_frame_padding.py,sha256=soGk99lWVN7oju_5F84HEBQ1V_zwH-4xh_hTPBgVp54,3049
49
+ pyxcp/tests/test_daq_opt.py,sha256=plhoUEJmf39kRVkH-17TvFIeyGTt7DljMqdw2eO6Yjg,12585
50
+ pyxcp/tests/test_transport.py,sha256=nFw0hR9ZKdEo4eIyg0vkxgB9ZlQPHari8lo7TJ1dzQE,2406
51
+ pyxcp/tests/test_can.py,sha256=bAhtFxXQcNJ6xDO-RHLHbRVTa7eDXd8WrO1SqMJp6P8,62672
52
+ pyxcp/aml/ifdata_CAN.a2l,sha256=c7GbbYyyXSdpmCBok4AdqU17OdiiHGguhZqhenD-UhI,592
53
+ pyxcp/aml/EtasCANMonitoring.a2l,sha256=at5QlrKbdY2JqkPpQ9b7cfHsYD62DKc_H3-IezQJGuE,1427
54
+ pyxcp/aml/ifdata_Eth.a2l,sha256=ip_6mV2wPL0Eec9tD2sAxMxMnK5AzbnvAxHljsLe57U,239
55
+ pyxcp/aml/XCPonSxI.aml,sha256=CBP3GrneqIjCNqi2p23cp6jsietHBLpNj15bQXb6naM,3235
56
+ pyxcp/aml/ifdata_USB.a2l,sha256=eoHTtynoySh963g8R-1UR4vpKh-3oXEE5pXfSYZWDUc,3575
57
+ pyxcp/aml/XCP_Common.aml,sha256=BVIVvAMi6QuFWtSj728a-Fl7V_GCXyNbewZzUtD-LTM,15037
58
+ pyxcp/aml/ifdata_Flx.a2l,sha256=_MNdBmTgCdFlGV7lkS-cAduwz6PQNOttKdjrj09bQkc,1797
59
+ pyxcp/aml/EtasCANMonitoring.aml,sha256=Bqg1tt_pemaeqGO4Qq6rlb7nhRoPIzPYnVppDqX2egg,2338
60
+ pyxcp/aml/XCPonCAN.aml,sha256=Ml4Mgf6Ky_oz3KrytrgOUAMFiRiXJBJwRajr0FWgcco,3771
61
+ pyxcp/aml/XCPonEth.aml,sha256=GfvkqVX4MqnAkUicjd-XVw4z2O3YtMag_A3b5isgcBE,2214
62
+ pyxcp/aml/XCPonUSB.aml,sha256=rPGduH-PE8-tBeELSm3vfkbf62uhlVP6gvJL0OvMclc,4847
63
+ pyxcp/aml/ifdata_SxI.a2l,sha256=8rAB6HTTAuNlFSrkFpR7fUA702yN4rTTNkw-xspZNV0,303
64
+ pyxcp/aml/XCPonFlx.aml,sha256=z58FMu6ZF4hVun8WBCuxvDrq6FZ_gj3tZM15G7E8Uvw,4647
65
+ pyxcp/master/__init__.py,sha256=o3XB9GDwLiqh-KRFC9YTOd0EvxJXDpyrcVxebiwT934,309
66
+ pyxcp/master/master.py,sha256=XNnX6oHp2B6eNoIZ_kpoxIZk_3ZUU3L9-d3dDyaQJtE,76337
67
+ pyxcp/master/errorhandler.py,sha256=C3T0nvn3L5QCE1AD-7dJp-D16YxfcS2OZOb9SwXySuM,14917
68
+ pyxcp/examples/xcp_read_benchmark.py,sha256=Hl0hrjV3FE-ivswvYOh0MsKiHnk03z7w8lQDYnvfeM8,918
69
+ pyxcp/examples/conf_eth.toml,sha256=b6bKN-K07gMQHNj7yiyB-HKrkVtZREgPXS4ByQueBs4,190
70
+ pyxcp/examples/xcphello_recorder.py,sha256=wL92d0dbPkjFzCT08JoRD9Mg2D6QbOpOzFDgSYdcNog,3302
71
+ pyxcp/examples/conf_nixnet.json,sha256=R-RKw172YhssO_9rud5McxtjesphEadA9Ub2OEKHpGM,424
72
+ pyxcp/examples/conf_sxi.json,sha256=rDh7LyaqtvYoYjMaVo1gqEkS_hiTGdXlW4O6ivzGhFo,149
73
+ pyxcp/examples/conf_can_vector.json,sha256=VtGmyt9ORPTo9yirv1fZM_XT9DARFFNwai11RaCNRWo,238
74
+ pyxcp/examples/conf_can_user.toml,sha256=BqCID-GvaNbA6pbqRbyRMuzKAsJaYVube0ql4CvkMoY,298
75
+ pyxcp/examples/xcp_user_supplied_driver.py,sha256=TD8Ggzdb2T9o6Z-VMvuJMREMpzufI5u27ThaadCxhDg,1024
76
+ pyxcp/examples/xcp_skel.py,sha256=F2g2C79jiYZl0cpRHfzWusfn1ZvodOS_r1Az6aknZL4,1110
77
+ pyxcp/examples/xcp_unlock.py,sha256=vl2Zv7Z6EuBxI2ZxbGQK6-0tZBVqd72FZllsvIfuJ5w,652
78
+ pyxcp/examples/xcphello.py,sha256=1Fzg28dGk3Xhh37SahmsigaEXcCfZFe8f1t9MRAPZDk,2551
79
+ pyxcp/examples/run_daq.py,sha256=JObp9HtjJphwr5sVQ4Jj3Q5GZHGNCK12tYTfR-6qcr4,5461
80
+ pyxcp/examples/conf_socket_can.toml,sha256=JB9zHHaya2mDXf0zPY7zEKiBDX2chzBBRxt7h3LxxDk,257
81
+ pyxcp/examples/conf_sxi.toml,sha256=r81OD0mCLk_h7vrN5MBJk0HFbiWi3bQZtFgFVrW6qcM,118
82
+ pyxcp/examples/conf_can.toml,sha256=oGkZYgmcpPsJ6YKGELm6DqF-hNvokJHCq99LAqxCyso,351
83
+ pyxcp/examples/conf_can_vector.toml,sha256=kKaYPum6MbN5s3zFc6rn232grpAM5QTwrQARODg5d9k,251
84
+ pyxcp/examples/xcp_policy.py,sha256=GUoqBH373gbWu-_L-lSF25vTbJiG2ZI-SQ2WLzAnjlo,1861
85
+ pyxcp/scripts/xcp_id_scanner.py,sha256=fRNtjQYMc3Rn8ZurOTBUvPp7JJdmIVCHvZiuoX70ytU,402
86
+ pyxcp/scripts/xmraw_converter.py,sha256=W_Znm5OzBKfcyiUgwHIaLYdc2DEusX6jv2b03KAHYrk,653
87
+ pyxcp/scripts/xcp_profile.py,sha256=5IoBMv8tV64nxKCVaJ4bBF7dl3_fqqsQ2tr0OoM87Vw,588
88
+ pyxcp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
+ pyxcp/scripts/xcp_fetch_a2l.py,sha256=tLdrU03xmnfz_-FeYSq-TH5ZsDLvpQRBvXpO5NZZohU,1199
90
+ pyxcp/scripts/xcp_info.py,sha256=sslBR_FBXYGG_W-SW1pZvtLBvyGO3jQKko-SqGqR2_0,5565
91
+ pyxcp/scripts/xcp_examples.py,sha256=rsvpb6moMhBxAcP5hBnHug9x-6i65WVwL5Q_tHty59c,2519
92
+ pyxcp/scripts/pyxcp_probe_can_drivers.py,sha256=qnNLYa6hInzNrVyYh7xXYt_SB5b-tgMJHXJwIkz7lbE,547
93
+ pyxcp/recorder/build_gcc_arm.sh,sha256=spqHf6D8Jd4NACYG65SNjb-BLMntELwBDO4PpHUiyYc,238
94
+ pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ pyxcp/recorder/mio.hpp,sha256=emP4qMXTxOe1wRSkB_U0hgOVz4aMUgG5dqcCvNNkAjs,61632
96
+ pyxcp/recorder/build_gcc.cmd,sha256=A1xt8AS7VZxjJq21VzX8cOT7wl9ap_AIXBWbcIEddCw,237
97
+ pyxcp/recorder/writer.hpp,sha256=rNjtRTtJes5z-BzKR2K56P_Kvc9MEVQgycu8J0wKf1g,11284
98
+ pyxcp/recorder/rekorder.cpython-310-darwin.so,sha256=_9fho09EvAI6zydNN-PFNkRADzMczO4caH0vh76m_pM,529744
99
+ pyxcp/recorder/lz4hc.c,sha256=GhoLtpQF6ViHkhQ_TaLw9UCzSB_MO-fdflgjR_xFFfM,86829
100
+ pyxcp/recorder/lz4.h,sha256=BkRLAtxukE15Z2yO0Pjrq-n6hw5W6jkGFR5f14MzpEU,45604
101
+ pyxcp/recorder/rekorder.cpp,sha256=LtN3Ud_pigNZ70gJ5-tyFJZN-3PMDVwqbbH694--TxQ,1841
102
+ pyxcp/recorder/wrap.cpp,sha256=S3frBevIrPE5m3kt_mXe9TDOwWPJFiVa7Rt9FGMCv2A,8909
103
+ pyxcp/recorder/build_clang.sh,sha256=TZHpQZbRE6M6vHf_ln5laO9tyREUbMu-HAw0VDGx5yw,179
104
+ pyxcp/recorder/reader.hpp,sha256=rr9XZ_ciL6eF2_xEqyt9XYNqTIze9ytAsnf8uYukO9U,5201
105
+ pyxcp/recorder/__init__.py,sha256=jeTmKvfjIenxHxt7zn6HMjnDpuPQU0d9SdnYK_t3gdE,2850
106
+ pyxcp/recorder/test_reko.py,sha256=sIM_BBY9sq1ZUTawoxmDzdtd5qHPT9w6eVYZoY4iFik,980
107
+ pyxcp/recorder/build_clang.cmd,sha256=vIWwC1zF_WChakjfj8VaUCN6X8HwyqvGgFRdUub1TtE,174
108
+ pyxcp/recorder/rekorder.cpython-311-darwin.so,sha256=EjeiXD_X-rt9sBfAbxrYnkVZCEMEIktJBaUnIVtgasw,529888
109
+ pyxcp/recorder/reco.py,sha256=SAO_XMKSBWHhdzxfkmV9ZoPvJjale4BGi8O9p5Sd_iE,8448
110
+ pyxcp/recorder/setup.py,sha256=piwBqaIX6SY1CyjKlantmd3I_VS6rk56sELvmPguKNM,957
111
+ pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
112
+ pyxcp/recorder/lz4hc.h,sha256=U_uN3Q2wIi3_dbEceJ16xHJZGotUiBTcnL6O5ARPi8M,20179
113
+ pyxcp/recorder/rekorder.cpython-312-darwin.so,sha256=0O9Ptej3oQV0sXa7oMrpqCF1U0_geZUDZWysrp5znO8,529904
114
+ pyxcp/recorder/lz4.c,sha256=k5b33lJ7yENd6cdWn7eZjlZUWoS088LYCMAjXAF3RTk,118145
115
+ pyxcp/recorder/build_gcc.sh,sha256=uvMhL4faEJmhG_8rzSOxEBRRqrACC0kmZgaERN8GkUs,209
116
+ pyxcp/recorder/rekorder.cpython-313-darwin.so,sha256=8f5kav7HAQZSfgBDnf412_wkZP7Ue3I6AwQjhC9LrSw,530144
117
+ pyxcp/recorder/unfolder.hpp,sha256=3gJKT2eMOZuT8o_M2NFLthdUIWd460vdwzlHaf-fQII,47998
118
+ pyxcp/recorder/converter/__init__.py,sha256=Byq0X0xl5iFZfFstJQPbT1z-7TWLtBpchZABYDW57eA,14447
119
+ pyxcp/stim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
+ pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
+ pyxcp/vector/map.py,sha256=dSxM15eXvZh6izITdJmFxr1rplDUlfaJUbtrm2Xv-dE,2224
122
+ pyxcp/cpp_ext/event.hpp,sha256=X2_ThYx8fzz-XR9McmsKM2Hb9I2x7XZeQGy1OyUs6iE,1133
123
+ pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so,sha256=2uXRx7kmeWoO72pf6FeIYSV0Un1CDwg6j45hrIB89RE,321696
124
+ pyxcp/cpp_ext/blockmem.hpp,sha256=wSUDTgwO9zNn0c29hZ_MRH7cHDIFKma2MYVxip9ARNE,1184
125
+ pyxcp/cpp_ext/mcobject.hpp,sha256=A5GKcfjYMcfm3hfTQfFuS4JYNFTvfmzAcMXCe01GOs4,6429
126
+ pyxcp/cpp_ext/tsqueue.hpp,sha256=PuDd0kmj61afjW0yva6T8pZL3m4fPCeWsuvEyx2M-80,980
127
+ pyxcp/cpp_ext/extension_wrapper.cpp,sha256=XHpMp0e1gNwAiNquAXuyd2fXnlqbEu5V7zCP_SNvWKs,4755
128
+ pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so,sha256=bQzwe_FuXE0nfXcJAuK2Ot6y5uhbTlT7Z_x6o4ZXd3w,321456
129
+ pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
130
+ pyxcp/cpp_ext/helper.hpp,sha256=ONAsVupIqqmNDp8bgGWS0TfSYeCFkk3kwwZbbqsh0HQ,7813
131
+ pyxcp/cpp_ext/bin.hpp,sha256=0CatarJ7jFewlg9EIxsDPxC4wnORHutx-1PLHpf9iqw,2457
132
+ pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so,sha256=C9qO_m2DNXOuFNFd2gZQ0NnX-wD9geUR1g7fIgESKh0,321456
133
+ pyxcp/cpp_ext/daqlist.hpp,sha256=Q1Gejo8i1rP2PzyUh4UHJ2z-kG0WNnkbBj7N8DAdzaM,7071
134
+ pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so,sha256=qlnVkp7k-ci_gds4AynKJrN8drfwE1wuZwuZhne0cig,321376
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.1.3
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-macosx_11_0_arm64
5
+ Generator: delocate 0.13.0
6
+
@@ -0,0 +1,9 @@
1
+ [console_scripts]
2
+ pyxcp-probe-can-drivers=pyxcp.scripts.pyxcp_probe_can_drivers:main
3
+ xcp-examples=pyxcp.scripts.xcp_examples:main
4
+ xcp-fetch-a2l=pyxcp.scripts.xcp_fetch_a2l:main
5
+ xcp-id-scanner=pyxcp.scripts.xcp_id_scanner:main
6
+ xcp-info=pyxcp.scripts.xcp_info:main
7
+ xcp-profile=pyxcp.scripts.xcp_profile:main
8
+ xmraw-converter=pyxcp.scripts.xmraw_converter:main
9
+