pyxcp 0.23.0__cp313-cp313-win_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.
- pyxcp/__init__.py +20 -0
- pyxcp/aml/EtasCANMonitoring.a2l +82 -0
- pyxcp/aml/EtasCANMonitoring.aml +67 -0
- pyxcp/aml/XCP_Common.aml +408 -0
- pyxcp/aml/XCPonCAN.aml +78 -0
- pyxcp/aml/XCPonEth.aml +33 -0
- pyxcp/aml/XCPonFlx.aml +113 -0
- pyxcp/aml/XCPonSxI.aml +66 -0
- pyxcp/aml/XCPonUSB.aml +106 -0
- pyxcp/aml/ifdata_CAN.a2l +20 -0
- pyxcp/aml/ifdata_Eth.a2l +11 -0
- pyxcp/aml/ifdata_Flx.a2l +94 -0
- pyxcp/aml/ifdata_SxI.a2l +13 -0
- pyxcp/aml/ifdata_USB.a2l +81 -0
- pyxcp/asam/__init__.py +0 -0
- pyxcp/asam/types.py +131 -0
- pyxcp/asamkeydll.c +116 -0
- pyxcp/asamkeydll.sh +2 -0
- pyxcp/checksum.py +732 -0
- pyxcp/cmdline.py +52 -0
- pyxcp/config/__init__.py +1113 -0
- pyxcp/config/legacy.py +120 -0
- pyxcp/constants.py +47 -0
- pyxcp/cpp_ext/__init__.py +0 -0
- pyxcp/cpp_ext/bin.hpp +104 -0
- pyxcp/cpp_ext/blockmem.hpp +58 -0
- pyxcp/cpp_ext/cpp_ext.cp310-win_arm64.pyd +0 -0
- pyxcp/cpp_ext/cpp_ext.cp311-win_arm64.pyd +0 -0
- pyxcp/cpp_ext/cpp_ext.cp312-win_arm64.pyd +0 -0
- pyxcp/cpp_ext/cpp_ext.cp313-win_arm64.pyd +0 -0
- pyxcp/cpp_ext/daqlist.hpp +206 -0
- pyxcp/cpp_ext/event.hpp +67 -0
- pyxcp/cpp_ext/extension_wrapper.cpp +100 -0
- pyxcp/cpp_ext/helper.hpp +280 -0
- pyxcp/cpp_ext/mcobject.hpp +246 -0
- pyxcp/cpp_ext/tsqueue.hpp +46 -0
- pyxcp/daq_stim/__init__.py +232 -0
- pyxcp/daq_stim/optimize/__init__.py +67 -0
- pyxcp/daq_stim/optimize/binpacking.py +41 -0
- pyxcp/daq_stim/scheduler.cpp +62 -0
- pyxcp/daq_stim/scheduler.hpp +75 -0
- pyxcp/daq_stim/stim.cp310-win_arm64.pyd +0 -0
- pyxcp/daq_stim/stim.cp311-win_arm64.pyd +0 -0
- pyxcp/daq_stim/stim.cp312-win_arm64.pyd +0 -0
- pyxcp/daq_stim/stim.cp313-win_arm64.pyd +0 -0
- pyxcp/daq_stim/stim.cpp +13 -0
- pyxcp/daq_stim/stim.hpp +604 -0
- pyxcp/daq_stim/stim_wrapper.cpp +50 -0
- pyxcp/dllif.py +100 -0
- pyxcp/errormatrix.py +878 -0
- pyxcp/examples/conf_can.toml +19 -0
- pyxcp/examples/conf_can_user.toml +16 -0
- pyxcp/examples/conf_can_vector.json +11 -0
- pyxcp/examples/conf_can_vector.toml +11 -0
- pyxcp/examples/conf_eth.toml +9 -0
- pyxcp/examples/conf_nixnet.json +20 -0
- pyxcp/examples/conf_socket_can.toml +12 -0
- pyxcp/examples/conf_sxi.json +9 -0
- pyxcp/examples/conf_sxi.toml +7 -0
- pyxcp/examples/run_daq.py +163 -0
- pyxcp/examples/xcp_policy.py +60 -0
- pyxcp/examples/xcp_read_benchmark.py +38 -0
- pyxcp/examples/xcp_skel.py +49 -0
- pyxcp/examples/xcp_unlock.py +38 -0
- pyxcp/examples/xcp_user_supplied_driver.py +44 -0
- pyxcp/examples/xcphello.py +78 -0
- pyxcp/examples/xcphello_recorder.py +107 -0
- pyxcp/master/__init__.py +9 -0
- pyxcp/master/errorhandler.py +442 -0
- pyxcp/master/master.py +2047 -0
- pyxcp/py.typed +0 -0
- pyxcp/recorder/__init__.py +101 -0
- pyxcp/recorder/build_clang.cmd +1 -0
- pyxcp/recorder/build_clang.sh +2 -0
- pyxcp/recorder/build_gcc.cmd +1 -0
- pyxcp/recorder/build_gcc.sh +2 -0
- pyxcp/recorder/build_gcc_arm.sh +2 -0
- pyxcp/recorder/converter/__init__.py +450 -0
- pyxcp/recorder/lz4.c +2829 -0
- pyxcp/recorder/lz4.h +879 -0
- pyxcp/recorder/lz4hc.c +2041 -0
- pyxcp/recorder/lz4hc.h +413 -0
- pyxcp/recorder/mio.hpp +1714 -0
- pyxcp/recorder/reader.hpp +139 -0
- pyxcp/recorder/reco.py +277 -0
- pyxcp/recorder/recorder.rst +0 -0
- pyxcp/recorder/rekorder.cp310-win_arm64.pyd +0 -0
- pyxcp/recorder/rekorder.cp311-win_arm64.pyd +0 -0
- pyxcp/recorder/rekorder.cp312-win_arm64.pyd +0 -0
- pyxcp/recorder/rekorder.cp313-win_arm64.pyd +0 -0
- pyxcp/recorder/rekorder.cpp +59 -0
- pyxcp/recorder/rekorder.hpp +274 -0
- pyxcp/recorder/setup.py +41 -0
- pyxcp/recorder/test_reko.py +34 -0
- pyxcp/recorder/unfolder.hpp +1332 -0
- pyxcp/recorder/wrap.cpp +189 -0
- pyxcp/recorder/writer.hpp +302 -0
- pyxcp/scripts/__init__.py +0 -0
- pyxcp/scripts/pyxcp_probe_can_drivers.py +20 -0
- pyxcp/scripts/xcp_examples.py +64 -0
- pyxcp/scripts/xcp_fetch_a2l.py +40 -0
- pyxcp/scripts/xcp_id_scanner.py +19 -0
- pyxcp/scripts/xcp_info.py +144 -0
- pyxcp/scripts/xcp_profile.py +27 -0
- pyxcp/scripts/xmraw_converter.py +31 -0
- pyxcp/stim/__init__.py +0 -0
- pyxcp/tests/test_asam_types.py +24 -0
- pyxcp/tests/test_binpacking.py +186 -0
- pyxcp/tests/test_can.py +1324 -0
- pyxcp/tests/test_checksum.py +95 -0
- pyxcp/tests/test_daq.py +193 -0
- pyxcp/tests/test_daq_opt.py +426 -0
- pyxcp/tests/test_frame_padding.py +156 -0
- pyxcp/tests/test_master.py +2006 -0
- pyxcp/tests/test_transport.py +81 -0
- pyxcp/tests/test_utils.py +30 -0
- pyxcp/timing.py +60 -0
- pyxcp/transport/__init__.py +10 -0
- pyxcp/transport/base.py +440 -0
- pyxcp/transport/base_transport.hpp +0 -0
- pyxcp/transport/can.py +556 -0
- pyxcp/transport/eth.py +219 -0
- pyxcp/transport/sxi.py +135 -0
- pyxcp/transport/transport_wrapper.cpp +0 -0
- pyxcp/transport/usb_transport.py +213 -0
- pyxcp/types.py +1000 -0
- pyxcp/utils.py +128 -0
- pyxcp/vector/__init__.py +0 -0
- pyxcp/vector/map.py +82 -0
- pyxcp-0.23.0.dist-info/LICENSE +165 -0
- pyxcp-0.23.0.dist-info/METADATA +107 -0
- pyxcp-0.23.0.dist-info/RECORD +134 -0
- pyxcp-0.23.0.dist-info/WHEEL +4 -0
- pyxcp-0.23.0.dist-info/entry_points.txt +9 -0
pyxcp/utils.py
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
import datetime
|
|
3
|
+
import functools
|
|
4
|
+
import operator
|
|
5
|
+
import sys
|
|
6
|
+
from binascii import hexlify
|
|
7
|
+
from enum import IntEnum
|
|
8
|
+
from time import perf_counter, sleep
|
|
9
|
+
from typing import Any, List, Optional, Union
|
|
10
|
+
|
|
11
|
+
import chardet
|
|
12
|
+
import pytz
|
|
13
|
+
|
|
14
|
+
from pyxcp.cpp_ext.cpp_ext import TimestampInfo
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def hexDump(arr: Union[bytes | bytearray]):
|
|
18
|
+
if isinstance(arr, (bytes, bytearray)):
|
|
19
|
+
size = len(arr)
|
|
20
|
+
try:
|
|
21
|
+
arr = arr.hex()
|
|
22
|
+
except BaseException: # noqa: B036
|
|
23
|
+
arr = hexlify(arr).decode("ascii")
|
|
24
|
+
return "[{}]".format(" ".join([arr[i * 2 : (i + 1) * 2] for i in range(size)]))
|
|
25
|
+
elif isinstance(arr, (list, tuple)):
|
|
26
|
+
arr = bytes(arr)
|
|
27
|
+
size = len(arr)
|
|
28
|
+
try:
|
|
29
|
+
arr = arr.hex()
|
|
30
|
+
except BaseException: # noqa: B036
|
|
31
|
+
arr = hexlify(arr).decode("ascii")
|
|
32
|
+
return "[{}]".format(" ".join([arr[i * 2 : (i + 1) * 2] for i in range(size)]))
|
|
33
|
+
else:
|
|
34
|
+
return "[{}]".format(" ".join([f"{x:02x}" for x in arr]))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def seconds_to_nanoseconds(value: float) -> int:
|
|
38
|
+
return int(value * 1_000_000_000)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def slicer(iterable, sliceLength, converter=None):
|
|
42
|
+
if converter is None:
|
|
43
|
+
converter = type(iterable)
|
|
44
|
+
length = len(iterable)
|
|
45
|
+
return [converter(iterable[item : item + sliceLength]) for item in range(0, length, sliceLength)]
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def functools_reduce_iconcat(a):
|
|
49
|
+
return functools.reduce(operator.iconcat, a, [])
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def flatten(*args):
|
|
53
|
+
"""Flatten a list of lists into a single list.
|
|
54
|
+
|
|
55
|
+
s. https://stackoverflow.com/questions/952914/how-do-i-make-a-flat-list-out-of-a-list-of-lists
|
|
56
|
+
"""
|
|
57
|
+
return functools.reduce(operator.iconcat, args, [])
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
def getPythonVersion():
|
|
61
|
+
return sys.version_info
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def decode_bytes(byte_str: bytes) -> str:
|
|
65
|
+
"""Decode bytes with the help of chardet"""
|
|
66
|
+
encoding = chardet.detect(byte_str).get("encoding")
|
|
67
|
+
if not encoding:
|
|
68
|
+
return byte_str.decode("ascii", "ignore")
|
|
69
|
+
else:
|
|
70
|
+
return byte_str.decode(encoding)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
PYTHON_VERSION = getPythonVersion()
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
def short_sleep():
|
|
77
|
+
sleep(0.0005)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
def delay(amount: float):
|
|
81
|
+
"""Performe a busy-wait delay, which is much more precise than `time.sleep`"""
|
|
82
|
+
|
|
83
|
+
start = perf_counter()
|
|
84
|
+
while perf_counter() < start + amount:
|
|
85
|
+
pass
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class CurrentDatetime(TimestampInfo):
|
|
89
|
+
|
|
90
|
+
def __init__(self, timestamp_ns: int):
|
|
91
|
+
TimestampInfo.__init__(self, timestamp_ns)
|
|
92
|
+
timezone = pytz.timezone(self.timezone)
|
|
93
|
+
dt = datetime.datetime.fromtimestamp(timestamp_ns / 1_000_000_000.0)
|
|
94
|
+
self.utc_offset = int(timezone.utcoffset(dt).total_seconds() / 60)
|
|
95
|
+
self.dst_offset = int(timezone.dst(dt).total_seconds() / 60)
|
|
96
|
+
|
|
97
|
+
def __str__(self):
|
|
98
|
+
return f"""CurrentDatetime(
|
|
99
|
+
datetime="{datetime.datetime.fromtimestamp(self.timestamp_ns / 1_000_000_000.0)!s}",
|
|
100
|
+
timezone="{self.timezone}",
|
|
101
|
+
timestamp_ns={self.timestamp_ns},
|
|
102
|
+
utc_offset={self.utc_offset},
|
|
103
|
+
dst_offset={self.dst_offset}
|
|
104
|
+
)"""
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
def enum_from_str(enum_class: IntEnum, enumerator: str) -> IntEnum:
|
|
108
|
+
"""Create an `IntEnum` instance from an enumerator `str`.
|
|
109
|
+
|
|
110
|
+
Parameters
|
|
111
|
+
----------
|
|
112
|
+
enum_class: IntEnum
|
|
113
|
+
|
|
114
|
+
enumerator: str
|
|
115
|
+
|
|
116
|
+
Example
|
|
117
|
+
-------
|
|
118
|
+
|
|
119
|
+
class Color(enum.IntEnum):
|
|
120
|
+
RED = 0
|
|
121
|
+
GREEN = 1
|
|
122
|
+
BLUE = 2
|
|
123
|
+
|
|
124
|
+
color: Color = enum_from_str(Color, "GREEN")
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
"""
|
|
128
|
+
return enum_class(enum_class.__members__.get(enumerator))
|
pyxcp/vector/__init__.py
ADDED
|
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.23.0
|
|
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
|
+
[](https://app.codacy.com/app/christoph2/pyxcp?utm_source=github.com&utm_medium=referral&utm_content=christoph2/pyxcp&utm_campaign=Badge_Grade_Settings)
|
|
43
|
+
[](https://codeclimate.com/github/christoph2/pyxcp/maintainability)
|
|
44
|
+
[](https://github.com/christoph2/pyxcp/actions)
|
|
45
|
+
[](https://ci.appveyor.com/project/christoph2/pyxcp)
|
|
46
|
+
[](https://coveralls.io/github/christoph2/pyxcp?branch=master)
|
|
47
|
+
[](https://github.com/psf/black)
|
|
48
|
+
[](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/__init__.py,sha256=HsK1yIHKAyE7NRJ_3fvn7ZdsCZf1v-4IG_zF3r1V4O0,547
|
|
2
|
+
pyxcp/aml/EtasCANMonitoring.a2l,sha256=EJYwe3Z3H24vyWAa6lUgcdKnQY8pwFxjyCN6ZU1ST8w,1509
|
|
3
|
+
pyxcp/aml/EtasCANMonitoring.aml,sha256=xl0DdyeiIaLW0mmmJNAyJS0CQdOLSxt9dxfgrdSlU8Y,2405
|
|
4
|
+
pyxcp/aml/ifdata_CAN.a2l,sha256=NCUnCUEEgRbZYSLGtUGwL2e7zJ8hrp0SbmLHGv8uY58,612
|
|
5
|
+
pyxcp/aml/ifdata_Eth.a2l,sha256=w4Vek0Xc5Rt7zroZztY0FEJTyVnk-E21wq_itxX2hI4,250
|
|
6
|
+
pyxcp/aml/ifdata_Flx.a2l,sha256=oXIIwl3DA9JCyVRGKaLEedauC0q4JoRWQly-qTiYAaw,1891
|
|
7
|
+
pyxcp/aml/ifdata_SxI.a2l,sha256=PPTZvyKKtp12qDiv9oHlW32ocPD7elJaOHklfg56r5E,316
|
|
8
|
+
pyxcp/aml/ifdata_USB.a2l,sha256=bN59aYL19CFr5EMwkoUZYLnH5uSubqGGNsg8dPYNDd0,3656
|
|
9
|
+
pyxcp/aml/XCP_Common.aml,sha256=CW9lgPw2V6qxtgZaT9wUGTP9FtaH6tse0_rzQ_Tcc7E,15445
|
|
10
|
+
pyxcp/aml/XCPonCAN.aml,sha256=WpWvKPZLDHEMaTUljCu6WidVkiLL8kmZ4VIZBoXQyl4,3849
|
|
11
|
+
pyxcp/aml/XCPonEth.aml,sha256=koFPs6hvInPrSSk6OHI1pF3Mq2bslT7TWBoTAjjYPWw,2247
|
|
12
|
+
pyxcp/aml/XCPonFlx.aml,sha256=Q3byhPQ1DvPFoCkX6ta4A9KPAXAiIDBbuKz3bVHbP8s,4760
|
|
13
|
+
pyxcp/aml/XCPonSxI.aml,sha256=sIHrBrvLHJkIcW77P7nVp17hTeKbEMRj3ssUsI7-Umw,3301
|
|
14
|
+
pyxcp/aml/XCPonUSB.aml,sha256=Xcu52ZckyuEX0v5rwYQxz8gJCAs4qyepXmd_bkCJVlA,4953
|
|
15
|
+
pyxcp/asam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
pyxcp/asam/types.py,sha256=_gKcpBF5mon_SDWZBUW0PGBMcb37yrvhhEuk1wslg-s,2441
|
|
17
|
+
pyxcp/asamkeydll.c,sha256=dVEvU0S1kgIo62S0La-T8xHSw668LM_DYc_fiQ0No6g,2952
|
|
18
|
+
pyxcp/asamkeydll.sh,sha256=DC2NKUMwvi39OQgJ6514Chr4wc1LYbTmQHmMq9jAHHs,59
|
|
19
|
+
pyxcp/checksum.py,sha256=hO2JW_eiO9I0A4eiqovMV9d_y5oidq_w8jKdAE4FeOo,11899
|
|
20
|
+
pyxcp/cmdline.py,sha256=na3ZbWQ-5ezsi1MrkuxMTCAXonUF3X6-LutoneyE3dU,1529
|
|
21
|
+
pyxcp/config/__init__.py,sha256=hM1eQtllcZeZ4zo9YzscO2Z5EOpV3hWyZgY9GZMiavw,42085
|
|
22
|
+
pyxcp/config/legacy.py,sha256=4QdDheX8DbBKv5JVT72_C_cjCgKvZmhN3tJ6hsvBEtI,5220
|
|
23
|
+
pyxcp/constants.py,sha256=9yGfujC0ImTYQWfn41wyw8pluJTSrhMGWIVeIZTgsLg,1160
|
|
24
|
+
pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
pyxcp/cpp_ext/bin.hpp,sha256=PwJloZek21la-RBSda2Hc0u_6gID0sfTduPeplaAyR4,2561
|
|
26
|
+
pyxcp/cpp_ext/blockmem.hpp,sha256=ysaJwmTWGTfE54Outk3gJYOfAVFd_QaonBMtXLcXwCc,1242
|
|
27
|
+
pyxcp/cpp_ext/cpp_ext.cp310-win_arm64.pyd,sha256=ngWh9VLVV3x3xkAOY9cICudHL6f31Xt-zTTyu3YaEII,314368
|
|
28
|
+
pyxcp/cpp_ext/cpp_ext.cp311-win_arm64.pyd,sha256=0fiqTL4eSk7-I-DJCAwW3InaSMyZbHmX3RY_xq5sMpI,314880
|
|
29
|
+
pyxcp/cpp_ext/cpp_ext.cp312-win_arm64.pyd,sha256=xlqbN5CUwZQtUMFK86e2iiabizkZWNrg0Q_IAZ2nXLk,306176
|
|
30
|
+
pyxcp/cpp_ext/cpp_ext.cp313-win_arm64.pyd,sha256=Kg2_-zpKBnaXYU0N9-uxGjEVORAKF5JQ--JTf8XQyWo,306176
|
|
31
|
+
pyxcp/cpp_ext/daqlist.hpp,sha256=g2hlxgoQorAGKHedZFZ0c2FQh1APMIA9sVB6M6hD_n8,7277
|
|
32
|
+
pyxcp/cpp_ext/event.hpp,sha256=Z-1yxsEKsr81NnLVEWJ2ANA8FV7YsM7EbNxaw-elheE,1200
|
|
33
|
+
pyxcp/cpp_ext/extension_wrapper.cpp,sha256=xFs3IcrvHPHA82-n11WPzt8HATGqcks02p84SjQ2BKM,4855
|
|
34
|
+
pyxcp/cpp_ext/helper.hpp,sha256=ONAsVupIqqmNDp8bgGWS0TfSYeCFkk3kwwZbbqsh0HQ,7813
|
|
35
|
+
pyxcp/cpp_ext/mcobject.hpp,sha256=A5GKcfjYMcfm3hfTQfFuS4JYNFTvfmzAcMXCe01GOs4,6429
|
|
36
|
+
pyxcp/cpp_ext/tsqueue.hpp,sha256=FWMemzXNgV5dQ7gYmTCzC0QYfgl0VI9JCybYelBcCHU,1026
|
|
37
|
+
pyxcp/daq_stim/__init__.py,sha256=2KsvP9RUV5gwFKTA1BBgsppAegR13ykrqjRtgY0zAx4,9560
|
|
38
|
+
pyxcp/daq_stim/optimize/__init__.py,sha256=FUWK0GkNpNT-sUlhibp7xa2aSYpm6Flh5yA2w2IOJqg,2520
|
|
39
|
+
pyxcp/daq_stim/optimize/binpacking.py,sha256=Iltho5diKlJG-ltbmx053U2vOFRlCISolXK61T14l_I,1257
|
|
40
|
+
pyxcp/daq_stim/scheduler.cpp,sha256=NuNkAz3Dv849f51_T36YPck2dl-YsdDdG-cozc7XN9U,1504
|
|
41
|
+
pyxcp/daq_stim/scheduler.hpp,sha256=U_6tUbebmzX5vVZS0EFSgTaPsyxMg6yRXHG_aPWA0x4,1884
|
|
42
|
+
pyxcp/daq_stim/stim.cp310-win_arm64.pyd,sha256=9ITP-EsJl6q_cY3vNwS1_AsBMayb6a4XNcUZd9NFjfU,210432
|
|
43
|
+
pyxcp/daq_stim/stim.cp311-win_arm64.pyd,sha256=IEisTgAw0GF4QceOZpEQ0WXxixPYEHhwDmUGsy7__Lo,210944
|
|
44
|
+
pyxcp/daq_stim/stim.cp312-win_arm64.pyd,sha256=nJIqVslA4M4ymiozFsttGRvDP2ENK9dHuYetepnmTnE,211456
|
|
45
|
+
pyxcp/daq_stim/stim.cp313-win_arm64.pyd,sha256=ZHL6C2-lWBWHhMC8axEVU4NHLrfmCyUlLyLuoiJi7Dw,211456
|
|
46
|
+
pyxcp/daq_stim/stim.cpp,sha256=F2OG67W4KKwTTiUCxm-9egIv3TLFdOkRunX6xf7YOtc,177
|
|
47
|
+
pyxcp/daq_stim/stim.hpp,sha256=U-uInRrA6OCdMl1l1SWbQ_KEPpnNYrWut924IvbW6R0,18508
|
|
48
|
+
pyxcp/daq_stim/stim_wrapper.cpp,sha256=iT2yxJ3LRG7HoYC1bwhM3tCAxF9X_HHierBNsLRmTJg,1995
|
|
49
|
+
pyxcp/dllif.py,sha256=qeo7quKQ-_7TjRh_umTD-g0utBcCJd1q4GBRl2m93-M,3444
|
|
50
|
+
pyxcp/errormatrix.py,sha256=iY3VlAem7pNfpK4scD_087wxMlLxNuidB7bbpiUiAyc,45464
|
|
51
|
+
pyxcp/examples/conf_can.toml,sha256=4o-M4xmh7pCzuQLfXnIOLIXqx5aZjMAZ6jtjYJ8hLBQ,370
|
|
52
|
+
pyxcp/examples/conf_can_user.toml,sha256=IJhcc60tKMDgNhviYtHr2OjEl_ID4CsfMKchDeMFdJs,314
|
|
53
|
+
pyxcp/examples/conf_can_vector.json,sha256=spux_wLX4EZdEpUqD2SU9-9uPDc2U1poeMaYo7QQT2M,249
|
|
54
|
+
pyxcp/examples/conf_can_vector.toml,sha256=VXkHgJ9OjSnaz4BpIKsYg53oSNsj9F0LrTSDh8vHJMk,262
|
|
55
|
+
pyxcp/examples/conf_eth.toml,sha256=BQE8UwZlBL4vNPQ_IDXVzrK9klFH9FhDCX68fXdSp_w,199
|
|
56
|
+
pyxcp/examples/conf_nixnet.json,sha256=BvXPrljPGzaRTNPch3K0XfU3KSBP1sVDDNP7yY850OQ,444
|
|
57
|
+
pyxcp/examples/conf_socket_can.toml,sha256=gTacQGm0p6fhPCMWC3ScLq9Xj-xJmNbjNXkjO4o7r8k,269
|
|
58
|
+
pyxcp/examples/conf_sxi.json,sha256=cXwNGoOpvqhdjXBQcE8lKgTs50wi9beosWKskZGJ-nI,158
|
|
59
|
+
pyxcp/examples/conf_sxi.toml,sha256=t-XsgRljcMdj0f3_CGRT60c77LeQPNbjIT17YxDK3Yg,125
|
|
60
|
+
pyxcp/examples/run_daq.py,sha256=osUkVyYiA2f1cTflqbwMdrxgyfXVJ7LmpHt3u68iyQU,5624
|
|
61
|
+
pyxcp/examples/xcp_policy.py,sha256=io9tS2W-7PvR8ZzU203KolFrDp67eorUlwNWvA4kC5k,1921
|
|
62
|
+
pyxcp/examples/xcp_read_benchmark.py,sha256=zOG0Yrji10vA0vhHa27KK7zgc3JDpzXzXsFnIU4C_AM,956
|
|
63
|
+
pyxcp/examples/xcp_skel.py,sha256=YXLQC8nn8aAwYSVuBGhr1dvmdMBjmO1Ee1w3e5sy16s,1159
|
|
64
|
+
pyxcp/examples/xcp_unlock.py,sha256=5F7oW17MboxKO3REYrGyhYX4Oc0Dg1oD3EQ3fQXB2Is,690
|
|
65
|
+
pyxcp/examples/xcp_user_supplied_driver.py,sha256=9fFiud6sbjkBjxmcdGwIO6yBc83sUykY388gvI5EcXU,1148
|
|
66
|
+
pyxcp/examples/xcphello.py,sha256=ZNfnk0nyz6qiY2i5L0lFFng42RwZdREwevIJW7C5QCA,2638
|
|
67
|
+
pyxcp/examples/xcphello_recorder.py,sha256=QHWJsq5h5CI9t5qEmMSorZyzirTpoXz4nzuKTMzbZCA,3409
|
|
68
|
+
pyxcp/master/__init__.py,sha256=QQbkUJM1WQ-5p2MiNFYxLAmHhNsCQLzDp-S4aoOFxoA,318
|
|
69
|
+
pyxcp/master/errorhandler.py,sha256=ulL6WiraZbVZnM2pfR8S9vlWAAP5UXwXqmbjjxH9rgc,15359
|
|
70
|
+
pyxcp/master/master.py,sha256=FIYCWCh9948cNmQ-D1DcjNcpb4mlXZ8UdCxTFH9Ti4g,78435
|
|
71
|
+
pyxcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
+
pyxcp/recorder/__init__.py,sha256=jeTmKvfjIenxHxt7zn6HMjnDpuPQU0d9SdnYK_t3gdE,2850
|
|
73
|
+
pyxcp/recorder/build_clang.cmd,sha256=JvFngSnb28XcBGXxC6MGrcOCGYfahOIvHpgRpqbA6HQ,175
|
|
74
|
+
pyxcp/recorder/build_clang.sh,sha256=zmU3nZxaNH1pxGWMyQ-S541TuVqxS00p3iPR9NUP4Ec,181
|
|
75
|
+
pyxcp/recorder/build_gcc.cmd,sha256=zj732DdvqDzGAFg7dvF83DUpf8Qf6rQ0cqEaID15Z80,238
|
|
76
|
+
pyxcp/recorder/build_gcc.sh,sha256=nCSh7G8xtxWtDNrMqNUxcjnm_CFpMeduIF0X-RSJtHA,211
|
|
77
|
+
pyxcp/recorder/build_gcc_arm.sh,sha256=jEo6Mgt_aVDL3nHtffecXOrN6gRsEoaA3S4pPrAzpCE,240
|
|
78
|
+
pyxcp/recorder/converter/__init__.py,sha256=9wsoWJE-PwjsUpQqMT2KUBqa_qdAiX9-cktf6Lkm_xU,14902
|
|
79
|
+
pyxcp/recorder/lz4.c,sha256=rOy3JE2SsOXvJ8a9pgGEfGpbDJnJR03dSVej0CwPmjg,120974
|
|
80
|
+
pyxcp/recorder/lz4.h,sha256=Kz_2V6kvOunNHoPl9-EqxWDVCvYXbU0J-pkSnCeXubs,46483
|
|
81
|
+
pyxcp/recorder/lz4hc.c,sha256=E56iE5CQ6fhQIVi3qNpxiIIP2sTGeC80JtVPyhidV6Q,88870
|
|
82
|
+
pyxcp/recorder/lz4hc.h,sha256=dtxPbesyAongP7CK_pL0M2DL707iMm9jGKrl8hXXRNk,20592
|
|
83
|
+
pyxcp/recorder/mio.hpp,sha256=5ASJLKSEykH0deAQD5uak-_yAgd5p2n8t06315GSGrg,63346
|
|
84
|
+
pyxcp/recorder/reader.hpp,sha256=rr9XZ_ciL6eF2_xEqyt9XYNqTIze9ytAsnf8uYukO9U,5201
|
|
85
|
+
pyxcp/recorder/reco.py,sha256=6N6FIwfCEVMpi5dr3eUOQa1lowcg2LCnS_sy_-b-UiQ,8725
|
|
86
|
+
pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
+
pyxcp/recorder/rekorder.cp310-win_arm64.pyd,sha256=oRN2Rd8KNMBy9xkW1PYMpZlo3SlsBCnsC0Hsb0d6_ZI,410624
|
|
88
|
+
pyxcp/recorder/rekorder.cp311-win_arm64.pyd,sha256=BkYwwEPCaCUJij3sRCFFkz88eomx-brI8pud-bZ8gOk,411136
|
|
89
|
+
pyxcp/recorder/rekorder.cp312-win_arm64.pyd,sha256=-PTbsKl4PYoEhJhd_ipJ65YfzncRUpX2dfoRnTJ5XaQ,400384
|
|
90
|
+
pyxcp/recorder/rekorder.cp313-win_arm64.pyd,sha256=3-8ibPAyXs7AQEeW9miytBHGZqxowCs1dMAe8wouIF4,400896
|
|
91
|
+
pyxcp/recorder/rekorder.cpp,sha256=U0LMyk8pZXx9emgS_WPVthvn_9IpgE7JGrh4kg-8CX4,1900
|
|
92
|
+
pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
|
|
93
|
+
pyxcp/recorder/setup.py,sha256=_99XFPQAd5V4LcJaSGJwdnbxgxJ7kl8DEXfHsnKO1Yg,998
|
|
94
|
+
pyxcp/recorder/test_reko.py,sha256=M8lfKBmBUl-28IMVoD6lU5Bnorz7fYFOvcAjfVZxuXA,1014
|
|
95
|
+
pyxcp/recorder/unfolder.hpp,sha256=3gJKT2eMOZuT8o_M2NFLthdUIWd460vdwzlHaf-fQII,47998
|
|
96
|
+
pyxcp/recorder/wrap.cpp,sha256=S3frBevIrPE5m3kt_mXe9TDOwWPJFiVa7Rt9FGMCv2A,8909
|
|
97
|
+
pyxcp/recorder/writer.hpp,sha256=rNjtRTtJes5z-BzKR2K56P_Kvc9MEVQgycu8J0wKf1g,11284
|
|
98
|
+
pyxcp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
+
pyxcp/scripts/pyxcp_probe_can_drivers.py,sha256=P_gscDTAofbSVA_Wd1GATrnyWGTf1-Dz_oPdlRFfjuk,567
|
|
100
|
+
pyxcp/scripts/xcp_examples.py,sha256=q2wNXHVZu4GjcIlZwp2j9Sqm5QH39Olro4BQaLoIqiM,2583
|
|
101
|
+
pyxcp/scripts/xcp_fetch_a2l.py,sha256=72818jdJiLsDuWWfkAPxekZ7fzRRz_A4RVSy06LQNe4,1239
|
|
102
|
+
pyxcp/scripts/xcp_id_scanner.py,sha256=2P53qrvM-rYFTBbbm7eAKyOxESkKrorieND-KoZZ9mo,421
|
|
103
|
+
pyxcp/scripts/xcp_info.py,sha256=ZRwXIfQNw4KSrAw-9VlNMpzKzGPwkUasUiZ1SGBs8Hc,5649
|
|
104
|
+
pyxcp/scripts/xcp_profile.py,sha256=ryJnx7cqQ40O05F3beuUEOthsiW_k9d_2wMf4Z9CWkc,615
|
|
105
|
+
pyxcp/scripts/xmraw_converter.py,sha256=LvjiKAWHUKs5QZNiIDT-vdNgPG0Gioas2MzLJOo62-Y,684
|
|
106
|
+
pyxcp/stim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
+
pyxcp/tests/test_asam_types.py,sha256=0M08q8dJIVx-rkUtFKTqUhhW9NkThYL83LW3d_yCols,587
|
|
108
|
+
pyxcp/tests/test_binpacking.py,sha256=kxLwYNzop775BkV68WXBoXVnLIuP0y4EKIW7u9niMKc,7623
|
|
109
|
+
pyxcp/tests/test_can.py,sha256=fLLATWZxZK3vG-jDwjkWSOCqzy1UmtdV304-3qD6kRQ,63996
|
|
110
|
+
pyxcp/tests/test_checksum.py,sha256=ZQ9-7bpKBLNKk1jxQ61AKAVUTWReOBYCZ8ikNo2jmII,1808
|
|
111
|
+
pyxcp/tests/test_daq.py,sha256=aSOYlm75BF6a-Av4-hWSyWKbV8Vzu_Ym2ugiE9UhRP0,5551
|
|
112
|
+
pyxcp/tests/test_daq_opt.py,sha256=GznXj4lVGfLWa8nJ2w3t_IlUQeq8HOspqEHbQq3zJ4I,13011
|
|
113
|
+
pyxcp/tests/test_frame_padding.py,sha256=b7D0oh_n33iFhi_FKav6LkA0smJB4vg5bTMKu-jIaf0,3205
|
|
114
|
+
pyxcp/tests/test_master.py,sha256=7bnd4M-F0BaavRuhGo5Jq9MxhGTr6MJBOupZtE82pSc,71440
|
|
115
|
+
pyxcp/tests/test_transport.py,sha256=vv7x7-rHPbmHc7BR8qcXx_Yy8STu1za1OzJmeuUSF14,2487
|
|
116
|
+
pyxcp/tests/test_utils.py,sha256=SrURAFc_6jtHng3PSZ5gpqXzVBVuPoMPB0YNvOvaIE0,880
|
|
117
|
+
pyxcp/timing.py,sha256=zE6qPqOuidg6saNt7_zmbQgufxL9Id6akVYhAtpweQc,1705
|
|
118
|
+
pyxcp/transport/__init__.py,sha256=31PaQLj76n5pXr68aJRWcYfrxEYWWgYoe9f_w3jZxsc,438
|
|
119
|
+
pyxcp/transport/base.py,sha256=n_tCkebmpq3WXRZncOP5XWgUnSavaBBm3oGZhpeCF9U,16352
|
|
120
|
+
pyxcp/transport/base_transport.hpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
+
pyxcp/transport/can.py,sha256=Sm2qu5JOSZ-f-PdgHVknTm1JTAH_L2DNxTxb5OJUCpI,18806
|
|
122
|
+
pyxcp/transport/eth.py,sha256=xPzN2oSALoPKJVvZpBljPSV1AxfpjRusOzymO-TD1Rw,8711
|
|
123
|
+
pyxcp/transport/sxi.py,sha256=kWB9x5M1pS7GBtBW6R65KBX7zDI9zcRRZhFM8frmzU0,4760
|
|
124
|
+
pyxcp/transport/transport_wrapper.cpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
|
+
pyxcp/transport/usb_transport.py,sha256=JuYrwkWsUdibdVNA57LBEQT3a3ykOgWPdWcfqj96nDE,8343
|
|
126
|
+
pyxcp/types.py,sha256=mjp3FhsTTbS3D5VuC-dfdbMql0lJwEfbZjf8a2pHi1o,26158
|
|
127
|
+
pyxcp/utils.py,sha256=_ag2QMt0IxVhiCLG5BIO8JzIGt-rdqYrY7DRAPQ4AtA,3530
|
|
128
|
+
pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
pyxcp/vector/map.py,sha256=7Gnhvr79geMeqqGVIJPxODXGwABdNDinnqzhpooN5TE,2306
|
|
130
|
+
pyxcp-0.23.0.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
|
|
131
|
+
pyxcp-0.23.0.dist-info/LICENSE,sha256=fTqV5eBpeAZO0_jit8j4Ref9ikBSlHJ8xwj5TLg7gFk,7817
|
|
132
|
+
pyxcp-0.23.0.dist-info/METADATA,sha256=rFI3eSIT9wls6T0ElsUpoohg_1J_SfoXCrI6yErmVv8,4084
|
|
133
|
+
pyxcp-0.23.0.dist-info/WHEEL,sha256=u6vpd9ecoKyC-acWfn504w0Ht4aN1WPFmkoZIR5RJLg,98
|
|
134
|
+
pyxcp-0.23.0.dist-info/RECORD,,
|
|
@@ -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
|
+
|