pyxcp 0.25.1__cp314-cp314-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.
Files changed (154) 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 +0 -0
  18. pyxcp/asamkeydll.c +116 -0
  19. pyxcp/asamkeydll.sh +2 -0
  20. pyxcp/checksum.py +732 -0
  21. pyxcp/cmdline.py +84 -0
  22. pyxcp/config/__init__.py +1257 -0
  23. pyxcp/config/legacy.py +120 -0
  24. pyxcp/constants.py +47 -0
  25. pyxcp/cpp_ext/__init__.py +0 -0
  26. pyxcp/cpp_ext/aligned_buffer.hpp +168 -0
  27. pyxcp/cpp_ext/bin.hpp +105 -0
  28. pyxcp/cpp_ext/blockmem.hpp +58 -0
  29. pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so +0 -0
  30. pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so +0 -0
  31. pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so +0 -0
  32. pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so +0 -0
  33. pyxcp/cpp_ext/cpp_ext.cpython-314-darwin.so +0 -0
  34. pyxcp/cpp_ext/daqlist.hpp +374 -0
  35. pyxcp/cpp_ext/event.hpp +67 -0
  36. pyxcp/cpp_ext/extension_wrapper.cpp +131 -0
  37. pyxcp/cpp_ext/framing.hpp +360 -0
  38. pyxcp/cpp_ext/helper.hpp +280 -0
  39. pyxcp/cpp_ext/mcobject.hpp +248 -0
  40. pyxcp/cpp_ext/sxi_framing.hpp +332 -0
  41. pyxcp/cpp_ext/tsqueue.hpp +46 -0
  42. pyxcp/daq_stim/__init__.py +306 -0
  43. pyxcp/daq_stim/optimize/__init__.py +67 -0
  44. pyxcp/daq_stim/optimize/binpacking.py +41 -0
  45. pyxcp/daq_stim/scheduler.cpp +62 -0
  46. pyxcp/daq_stim/scheduler.hpp +75 -0
  47. pyxcp/daq_stim/stim.cpp +13 -0
  48. pyxcp/daq_stim/stim.cpython-310-darwin.so +0 -0
  49. pyxcp/daq_stim/stim.cpython-311-darwin.so +0 -0
  50. pyxcp/daq_stim/stim.cpython-312-darwin.so +0 -0
  51. pyxcp/daq_stim/stim.cpython-313-darwin.so +0 -0
  52. pyxcp/daq_stim/stim.cpython-314-darwin.so +0 -0
  53. pyxcp/daq_stim/stim.hpp +604 -0
  54. pyxcp/daq_stim/stim_wrapper.cpp +50 -0
  55. pyxcp/dllif.py +100 -0
  56. pyxcp/errormatrix.py +878 -0
  57. pyxcp/examples/conf_can.toml +19 -0
  58. pyxcp/examples/conf_can_user.toml +16 -0
  59. pyxcp/examples/conf_can_vector.json +11 -0
  60. pyxcp/examples/conf_can_vector.toml +11 -0
  61. pyxcp/examples/conf_eth.toml +9 -0
  62. pyxcp/examples/conf_nixnet.json +20 -0
  63. pyxcp/examples/conf_socket_can.toml +12 -0
  64. pyxcp/examples/run_daq.py +165 -0
  65. pyxcp/examples/xcp_policy.py +60 -0
  66. pyxcp/examples/xcp_read_benchmark.py +38 -0
  67. pyxcp/examples/xcp_skel.py +49 -0
  68. pyxcp/examples/xcp_unlock.py +38 -0
  69. pyxcp/examples/xcp_user_supplied_driver.py +44 -0
  70. pyxcp/examples/xcphello.py +78 -0
  71. pyxcp/examples/xcphello_recorder.py +107 -0
  72. pyxcp/master/__init__.py +9 -0
  73. pyxcp/master/errorhandler.py +677 -0
  74. pyxcp/master/master.py +2641 -0
  75. pyxcp/py.typed +0 -0
  76. pyxcp/recorder/.idea/.gitignore +8 -0
  77. pyxcp/recorder/.idea/misc.xml +4 -0
  78. pyxcp/recorder/.idea/modules.xml +8 -0
  79. pyxcp/recorder/.idea/recorder.iml +6 -0
  80. pyxcp/recorder/.idea/sonarlint/issuestore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728 +7 -0
  81. pyxcp/recorder/.idea/sonarlint/issuestore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae +0 -0
  82. pyxcp/recorder/.idea/sonarlint/issuestore/b/4/b49006702b459496a8e8c94ebe60947108361b91 +0 -0
  83. pyxcp/recorder/.idea/sonarlint/issuestore/index.pb +7 -0
  84. pyxcp/recorder/.idea/sonarlint/securityhotspotstore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728 +0 -0
  85. pyxcp/recorder/.idea/sonarlint/securityhotspotstore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae +0 -0
  86. pyxcp/recorder/.idea/sonarlint/securityhotspotstore/b/4/b49006702b459496a8e8c94ebe60947108361b91 +0 -0
  87. pyxcp/recorder/.idea/sonarlint/securityhotspotstore/index.pb +7 -0
  88. pyxcp/recorder/.idea/vcs.xml +10 -0
  89. pyxcp/recorder/__init__.py +96 -0
  90. pyxcp/recorder/build_clang.cmd +1 -0
  91. pyxcp/recorder/build_clang.sh +2 -0
  92. pyxcp/recorder/build_gcc.cmd +1 -0
  93. pyxcp/recorder/build_gcc.sh +2 -0
  94. pyxcp/recorder/build_gcc_arm.sh +2 -0
  95. pyxcp/recorder/converter/__init__.py +450 -0
  96. pyxcp/recorder/lz4.c +2829 -0
  97. pyxcp/recorder/lz4.h +879 -0
  98. pyxcp/recorder/lz4hc.c +2041 -0
  99. pyxcp/recorder/lz4hc.h +413 -0
  100. pyxcp/recorder/mio.hpp +1714 -0
  101. pyxcp/recorder/reader.hpp +138 -0
  102. pyxcp/recorder/reco.py +277 -0
  103. pyxcp/recorder/recorder.rst +0 -0
  104. pyxcp/recorder/rekorder.cpp +59 -0
  105. pyxcp/recorder/rekorder.cpython-310-darwin.so +0 -0
  106. pyxcp/recorder/rekorder.cpython-311-darwin.so +0 -0
  107. pyxcp/recorder/rekorder.cpython-312-darwin.so +0 -0
  108. pyxcp/recorder/rekorder.cpython-313-darwin.so +0 -0
  109. pyxcp/recorder/rekorder.cpython-314-darwin.so +0 -0
  110. pyxcp/recorder/rekorder.hpp +274 -0
  111. pyxcp/recorder/setup.py +41 -0
  112. pyxcp/recorder/test_reko.py +34 -0
  113. pyxcp/recorder/unfolder.hpp +1354 -0
  114. pyxcp/recorder/wrap.cpp +184 -0
  115. pyxcp/recorder/writer.hpp +302 -0
  116. pyxcp/scripts/__init__.py +0 -0
  117. pyxcp/scripts/pyxcp_probe_can_drivers.py +20 -0
  118. pyxcp/scripts/xcp_examples.py +64 -0
  119. pyxcp/scripts/xcp_fetch_a2l.py +40 -0
  120. pyxcp/scripts/xcp_id_scanner.py +19 -0
  121. pyxcp/scripts/xcp_info.py +144 -0
  122. pyxcp/scripts/xcp_profile.py +27 -0
  123. pyxcp/scripts/xmraw_converter.py +31 -0
  124. pyxcp/stim/__init__.py +0 -0
  125. pyxcp/tests/test_asam_types.py +24 -0
  126. pyxcp/tests/test_binpacking.py +186 -0
  127. pyxcp/tests/test_can.py +1324 -0
  128. pyxcp/tests/test_checksum.py +95 -0
  129. pyxcp/tests/test_daq.py +193 -0
  130. pyxcp/tests/test_daq_opt.py +426 -0
  131. pyxcp/tests/test_frame_padding.py +156 -0
  132. pyxcp/tests/test_framing.py +262 -0
  133. pyxcp/tests/test_master.py +2117 -0
  134. pyxcp/tests/test_transport.py +178 -0
  135. pyxcp/tests/test_utils.py +30 -0
  136. pyxcp/timing.py +60 -0
  137. pyxcp/transport/__init__.py +13 -0
  138. pyxcp/transport/base.py +484 -0
  139. pyxcp/transport/base_transport.hpp +0 -0
  140. pyxcp/transport/can.py +660 -0
  141. pyxcp/transport/eth.py +254 -0
  142. pyxcp/transport/sxi.py +209 -0
  143. pyxcp/transport/transport_ext.hpp +214 -0
  144. pyxcp/transport/transport_wrapper.cpp +249 -0
  145. pyxcp/transport/usb_transport.py +229 -0
  146. pyxcp/types.py +987 -0
  147. pyxcp/utils.py +128 -0
  148. pyxcp/vector/__init__.py +0 -0
  149. pyxcp/vector/map.py +82 -0
  150. pyxcp-0.25.1.dist-info/METADATA +341 -0
  151. pyxcp-0.25.1.dist-info/RECORD +154 -0
  152. pyxcp-0.25.1.dist-info/WHEEL +6 -0
  153. pyxcp-0.25.1.dist-info/entry_points.txt +9 -0
  154. pyxcp-0.25.1.dist-info/licenses/LICENSE +165 -0
@@ -0,0 +1,154 @@
1
+ pyxcp-0.25.1.dist-info/RECORD,,
2
+ pyxcp-0.25.1.dist-info/WHEEL,sha256=CRznWDXU4s_gJVZNW1RTWtQbEVjRyjHhh4HJ3NfLWbg,134
3
+ pyxcp-0.25.1.dist-info/entry_points.txt,sha256=LkHsEwubm30s4oiyCy0cKj6k97ALvQ6KjAVdyEcqu7g,358
4
+ pyxcp-0.25.1.dist-info/METADATA,sha256=LMohG4YmQdt3n8OLNBQOQESFGhNuixo2v96c9lbqYSg,12775
5
+ pyxcp-0.25.1.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=OVSO-X6JV1Si2tKZ1ar2gYbiqCTlTaj5jY-z6N2Vk3Q,2453
12
+ pyxcp/__init__.py,sha256=u3Xj1wUwmdRPOwA6wWA7Ndn9TEIO0QtBgGrb2m-A21I,527
13
+ pyxcp/types.py,sha256=dMYu4yzKL_TXFb7jUH31nVLRTDvss7nQO9O49OZju2k,24976
14
+ pyxcp/timing.py,sha256=hzeQZ3P7ij_bfskoVMi10Iv5S4i_6TQYfnB8PXTX6c4,1645
15
+ pyxcp/utils.py,sha256=cHb5RUNim90U1U_a4axRmfa2n_xhFdjqHoRBEODoscs,3404
16
+ pyxcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ pyxcp/errormatrix.py,sha256=cYcsJ11Qm39DPuaR4BJ9fMpS3Hkphd_ezIQOKjI-pQE,44586
18
+ pyxcp/asamkeydll,sha256=gN2rba8QriwZO9AZ_cUdmf8TS48P1vjonaaAN3bc9gk,50584
19
+ pyxcp/asam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ pyxcp/asam/types.py,sha256=V4wSCGI1pXn0EsBemDyaHTBgY2wkV_BeLShnDIGGgDE,2310
21
+ pyxcp/daq_stim/stim.cpython-314-darwin.so,sha256=KjE1uOTfx-rkcQ5zg5m5vFC1_V9EXE-Ix3ytHQQ7gXc,238120
22
+ pyxcp/daq_stim/stim.cpython-312-darwin.so,sha256=jduyfSIFTpWrAV47wGzJL3tzoZfkfVmDMeFl64P_oTo,237880
23
+ pyxcp/daq_stim/stim.cpp,sha256=sABgEfbQlt5kXbzAsndyhaDFWRWTJw3jJlNfanIVrRs,164
24
+ pyxcp/daq_stim/__init__.py,sha256=59Cbs-veJD-ZFqf2oVfB8Vq9chmdARaY7KOyREZZW6c,13462
25
+ pyxcp/daq_stim/scheduler.cpp,sha256=2XW9PmxrJR8DfYMVszGwBX-KANVviwPcUNBvnjw5MlM,1443
26
+ pyxcp/daq_stim/stim.cpython-313-darwin.so,sha256=IX8coHUbNwfIvIDCQAeGmUJIZNSeAs9cvZe6Sm1VvMI,238120
27
+ pyxcp/daq_stim/stim.hpp,sha256=1DwAhkY7XJN14aD2BxLJ4O1j4_a6RvpePIbAG1U8iOA,17904
28
+ pyxcp/daq_stim/stim.cpython-310-darwin.so,sha256=ciy3m3t6O2ijjYa190hWupKTv4NYSe6xs7EipP3FBFk,237816
29
+ pyxcp/daq_stim/scheduler.hpp,sha256=H-kwyZBV3S8q6YlCq6OLUbaNXskyCOS4z3SRP32ikPY,1809
30
+ pyxcp/daq_stim/stim_wrapper.cpp,sha256=7iL1-4BPavo5bfrph20Fvicn6HxGEZQqYLvdxniJBYU,1945
31
+ pyxcp/daq_stim/stim.cpython-311-darwin.so,sha256=aahyParbpwhlB-BuKK1ZPOP8oiNfNFaserUsVLZ9XHE,237896
32
+ pyxcp/daq_stim/optimize/__init__.py,sha256=joAKvAvlYQEi7VF2oVftn_ohgRO231wnc3e8fY231L4,2453
33
+ pyxcp/daq_stim/optimize/binpacking.py,sha256=AZHABtAnzBVJ-MVUGLrxuAp_bAtv3C-gMxrXXXrgi-Y,1216
34
+ pyxcp/transport/transport_wrapper.cpp,sha256=6TlcoK0s_0KfPB2CS28ip3aTva9Mh-9c9FPgIOtZHFI,12236
35
+ pyxcp/transport/eth.py,sha256=AiUu2oowM8JqDPqYKfTPsa6BknY5d5NdnmzlR4v_Mqw,10275
36
+ pyxcp/transport/sxi.py,sha256=MHe4RUY3nHZ8vQJ5ulqfV2vnXjJ1C98FWJpGtje7h3Y,7169
37
+ pyxcp/transport/transport_ext.hpp,sha256=h57BM0XEiHDZj3Ze647cSsTdMtYmrnZ9AR_rLgqxhTw,6297
38
+ pyxcp/transport/base_transport.hpp,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ pyxcp/transport/__init__.py,sha256=JNu4LcdhEHYCLGOj-JpgQ8Sp_cOLGKWWDqFNFxnig2U,404
40
+ pyxcp/transport/usb_transport.py,sha256=yRMaT7B3QT_iod4o5e7R-viL4Jmb9mMWCHMwmGSTlso,8672
41
+ pyxcp/transport/can.py,sha256=NZYr8uM_YrZ9ZkbjnQ889pjuf4tlylOzCeKYMe0TW4E,23371
42
+ pyxcp/transport/base.py,sha256=ROegIFRponlLa4np7Qo727IJPok4jj_RthTQ40QdTYI,18299
43
+ pyxcp/config/legacy.py,sha256=Uhu_6bp_W8yGmZ2s3TFzf8-5mGwLdeTss56BMYWpsZY,5100
44
+ pyxcp/config/__init__.py,sha256=jsakRiNGpCGfTQfRFH9wPwgCW3GF-s97X9T7S6y4juM,48270
45
+ pyxcp/tests/test_utils.py,sha256=gqv3bhhWfKKdKDkqnELqsOHCfpRRZwlReEy87Ya4Z2w,850
46
+ pyxcp/tests/test_master.py,sha256=I5zbokLYC0Gb6VqpgwUcJlp4Cxl0IijxKZBVJWbUt5Y,73354
47
+ pyxcp/tests/test_daq.py,sha256=mThMsweEwxzIFRQQ88BNz_60OQ-xmC5OamIxHx9VWis,5358
48
+ pyxcp/tests/test_binpacking.py,sha256=BKgIGZDv_RjZOjNvbzEcjonQ4_QZHMZjn7_YPOfHdUI,7437
49
+ pyxcp/tests/test_asam_types.py,sha256=olmvcmEVRb4Oar2mOnCTN4qCdM3w6SoKmBpjwHfKwO8,563
50
+ pyxcp/tests/test_checksum.py,sha256=rkkdLPH4But4wPxlRtVOC4Wd5kCH2suU4Dle6-HXHTk,1713
51
+ pyxcp/tests/test_frame_padding.py,sha256=soGk99lWVN7oju_5F84HEBQ1V_zwH-4xh_hTPBgVp54,3049
52
+ pyxcp/tests/test_daq_opt.py,sha256=plhoUEJmf39kRVkH-17TvFIeyGTt7DljMqdw2eO6Yjg,12585
53
+ pyxcp/tests/test_transport.py,sha256=4Y_oKKg0mwFlpHXhQUb06YcY0L_uNcNiIsPaGMgKJy8,5815
54
+ pyxcp/tests/test_framing.py,sha256=P67215OiXxWf1lSkIVM7t5DvYbqfdH6mneQ1TwxPRFg,7708
55
+ pyxcp/tests/test_can.py,sha256=bAhtFxXQcNJ6xDO-RHLHbRVTa7eDXd8WrO1SqMJp6P8,62672
56
+ pyxcp/aml/ifdata_CAN.a2l,sha256=c7GbbYyyXSdpmCBok4AdqU17OdiiHGguhZqhenD-UhI,592
57
+ pyxcp/aml/EtasCANMonitoring.a2l,sha256=at5QlrKbdY2JqkPpQ9b7cfHsYD62DKc_H3-IezQJGuE,1427
58
+ pyxcp/aml/ifdata_Eth.a2l,sha256=ip_6mV2wPL0Eec9tD2sAxMxMnK5AzbnvAxHljsLe57U,239
59
+ pyxcp/aml/XCPonSxI.aml,sha256=CBP3GrneqIjCNqi2p23cp6jsietHBLpNj15bQXb6naM,3235
60
+ pyxcp/aml/ifdata_USB.a2l,sha256=eoHTtynoySh963g8R-1UR4vpKh-3oXEE5pXfSYZWDUc,3575
61
+ pyxcp/aml/XCP_Common.aml,sha256=BVIVvAMi6QuFWtSj728a-Fl7V_GCXyNbewZzUtD-LTM,15037
62
+ pyxcp/aml/ifdata_Flx.a2l,sha256=_MNdBmTgCdFlGV7lkS-cAduwz6PQNOttKdjrj09bQkc,1797
63
+ pyxcp/aml/EtasCANMonitoring.aml,sha256=Bqg1tt_pemaeqGO4Qq6rlb7nhRoPIzPYnVppDqX2egg,2338
64
+ pyxcp/aml/XCPonCAN.aml,sha256=Ml4Mgf6Ky_oz3KrytrgOUAMFiRiXJBJwRajr0FWgcco,3771
65
+ pyxcp/aml/XCPonEth.aml,sha256=GfvkqVX4MqnAkUicjd-XVw4z2O3YtMag_A3b5isgcBE,2214
66
+ pyxcp/aml/XCPonUSB.aml,sha256=rPGduH-PE8-tBeELSm3vfkbf62uhlVP6gvJL0OvMclc,4847
67
+ pyxcp/aml/ifdata_SxI.a2l,sha256=8rAB6HTTAuNlFSrkFpR7fUA702yN4rTTNkw-xspZNV0,303
68
+ pyxcp/aml/XCPonFlx.aml,sha256=z58FMu6ZF4hVun8WBCuxvDrq6FZ_gj3tZM15G7E8Uvw,4647
69
+ pyxcp/master/__init__.py,sha256=o3XB9GDwLiqh-KRFC9YTOd0EvxJXDpyrcVxebiwT934,309
70
+ pyxcp/master/master.py,sha256=XeRQ2qGYfiVP1PZp3dPbjk4tkdgg8rNFdCaPIsNFXb8,98991
71
+ pyxcp/master/errorhandler.py,sha256=HjaaO_QQlSs5IVkuGk5rjLv_La5HlYCdzt5BFhTALOE,25951
72
+ pyxcp/examples/xcp_read_benchmark.py,sha256=Hl0hrjV3FE-ivswvYOh0MsKiHnk03z7w8lQDYnvfeM8,918
73
+ pyxcp/examples/conf_eth.toml,sha256=b6bKN-K07gMQHNj7yiyB-HKrkVtZREgPXS4ByQueBs4,190
74
+ pyxcp/examples/xcphello_recorder.py,sha256=wL92d0dbPkjFzCT08JoRD9Mg2D6QbOpOzFDgSYdcNog,3302
75
+ pyxcp/examples/conf_nixnet.json,sha256=R-RKw172YhssO_9rud5McxtjesphEadA9Ub2OEKHpGM,424
76
+ pyxcp/examples/conf_can_vector.json,sha256=VtGmyt9ORPTo9yirv1fZM_XT9DARFFNwai11RaCNRWo,238
77
+ pyxcp/examples/conf_can_user.toml,sha256=BqCID-GvaNbA6pbqRbyRMuzKAsJaYVube0ql4CvkMoY,298
78
+ pyxcp/examples/xcp_user_supplied_driver.py,sha256=Wyep2KhtcFC2GzZuJPj5ikSqWIWYsf5D0mfs1jCtYX0,1104
79
+ pyxcp/examples/xcp_skel.py,sha256=F2g2C79jiYZl0cpRHfzWusfn1ZvodOS_r1Az6aknZL4,1110
80
+ pyxcp/examples/xcp_unlock.py,sha256=vl2Zv7Z6EuBxI2ZxbGQK6-0tZBVqd72FZllsvIfuJ5w,652
81
+ pyxcp/examples/xcphello.py,sha256=JK9U_QkFP0AwKlZK9lFB66GAqUDFRoXL3XMYO5EdRQQ,2550
82
+ pyxcp/examples/run_daq.py,sha256=IjfQiXXmlhQ2pGh5KW9QRqztb8LBTLS0eW3I7cFkPmo,5511
83
+ pyxcp/examples/conf_socket_can.toml,sha256=JB9zHHaya2mDXf0zPY7zEKiBDX2chzBBRxt7h3LxxDk,257
84
+ pyxcp/examples/conf_can.toml,sha256=oGkZYgmcpPsJ6YKGELm6DqF-hNvokJHCq99LAqxCyso,351
85
+ pyxcp/examples/conf_can_vector.toml,sha256=kKaYPum6MbN5s3zFc6rn232grpAM5QTwrQARODg5d9k,251
86
+ pyxcp/examples/xcp_policy.py,sha256=0A4v8Tr-xj2yVwHRoDaou97R6Hk6Yx96bPovnUoe5ro,1861
87
+ pyxcp/scripts/xcp_id_scanner.py,sha256=fRNtjQYMc3Rn8ZurOTBUvPp7JJdmIVCHvZiuoX70ytU,402
88
+ pyxcp/scripts/xmraw_converter.py,sha256=W_Znm5OzBKfcyiUgwHIaLYdc2DEusX6jv2b03KAHYrk,653
89
+ pyxcp/scripts/xcp_profile.py,sha256=5IoBMv8tV64nxKCVaJ4bBF7dl3_fqqsQ2tr0OoM87Vw,588
90
+ pyxcp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ pyxcp/scripts/xcp_fetch_a2l.py,sha256=tLdrU03xmnfz_-FeYSq-TH5ZsDLvpQRBvXpO5NZZohU,1199
92
+ pyxcp/scripts/xcp_info.py,sha256=vXGNjO8tFJhiudp9ItZ9946NIRStj4brEpY4nNo9bTo,5505
93
+ pyxcp/scripts/xcp_examples.py,sha256=rsvpb6moMhBxAcP5hBnHug9x-6i65WVwL5Q_tHty59c,2519
94
+ pyxcp/scripts/pyxcp_probe_can_drivers.py,sha256=qnNLYa6hInzNrVyYh7xXYt_SB5b-tgMJHXJwIkz7lbE,547
95
+ pyxcp/recorder/build_gcc_arm.sh,sha256=spqHf6D8Jd4NACYG65SNjb-BLMntELwBDO4PpHUiyYc,238
96
+ pyxcp/recorder/recorder.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
+ pyxcp/recorder/mio.hpp,sha256=emP4qMXTxOe1wRSkB_U0hgOVz4aMUgG5dqcCvNNkAjs,61632
98
+ pyxcp/recorder/build_gcc.cmd,sha256=A1xt8AS7VZxjJq21VzX8cOT7wl9ap_AIXBWbcIEddCw,237
99
+ pyxcp/recorder/writer.hpp,sha256=rNjtRTtJes5z-BzKR2K56P_Kvc9MEVQgycu8J0wKf1g,11284
100
+ pyxcp/recorder/rekorder.cpython-310-darwin.so,sha256=w9pw6ugYi7KqbqOX86KwaFiYz-wS2LgY40dB3plEXTw,529984
101
+ pyxcp/recorder/lz4hc.c,sha256=GhoLtpQF6ViHkhQ_TaLw9UCzSB_MO-fdflgjR_xFFfM,86829
102
+ pyxcp/recorder/lz4.h,sha256=BkRLAtxukE15Z2yO0Pjrq-n6hw5W6jkGFR5f14MzpEU,45604
103
+ pyxcp/recorder/rekorder.cpp,sha256=LtN3Ud_pigNZ70gJ5-tyFJZN-3PMDVwqbbH694--TxQ,1841
104
+ pyxcp/recorder/wrap.cpp,sha256=oCsEOnRsvLlaWjyN09X7mcHLzzqCyLskREKb6kmyqNE,8707
105
+ pyxcp/recorder/build_clang.sh,sha256=TZHpQZbRE6M6vHf_ln5laO9tyREUbMu-HAw0VDGx5yw,179
106
+ pyxcp/recorder/reader.hpp,sha256=ssdaAaG_fHKrJMuMo_tfcCaCjFrIC5HQGNXgR343bVY,5131
107
+ pyxcp/recorder/__init__.py,sha256=tMqiPL3tbYEVpxAIIBBr6dF4fKNmMJQN0kxkfgWBGLA,2680
108
+ pyxcp/recorder/test_reko.py,sha256=sIM_BBY9sq1ZUTawoxmDzdtd5qHPT9w6eVYZoY4iFik,980
109
+ pyxcp/recorder/build_clang.cmd,sha256=vIWwC1zF_WChakjfj8VaUCN6X8HwyqvGgFRdUub1TtE,174
110
+ pyxcp/recorder/rekorder.cpython-311-darwin.so,sha256=8AXLZN1G6hhWP1DYIKwEu5nIwYZ2eeJMtgackkHpmqY,530128
111
+ pyxcp/recorder/reco.py,sha256=SAO_XMKSBWHhdzxfkmV9ZoPvJjale4BGi8O9p5Sd_iE,8448
112
+ pyxcp/recorder/setup.py,sha256=piwBqaIX6SY1CyjKlantmd3I_VS6rk56sELvmPguKNM,957
113
+ pyxcp/recorder/rekorder.hpp,sha256=sWvRch9bVt6mmgrFHp5mwWhap7HoFG4geeb7UqEIzio,7638
114
+ pyxcp/recorder/rekorder.cpython-314-darwin.so,sha256=34KFqWuG1URGDneczaYk6GoNU4qkgxSfd-iHniWKfEw,546912
115
+ pyxcp/recorder/lz4hc.h,sha256=U_uN3Q2wIi3_dbEceJ16xHJZGotUiBTcnL6O5ARPi8M,20179
116
+ pyxcp/recorder/rekorder.cpython-312-darwin.so,sha256=3OBGF_7vokZYz-UtBgKpSZBGbbze6iQ0Trz9X_XtJGA,530144
117
+ pyxcp/recorder/lz4.c,sha256=k5b33lJ7yENd6cdWn7eZjlZUWoS088LYCMAjXAF3RTk,118145
118
+ pyxcp/recorder/build_gcc.sh,sha256=uvMhL4faEJmhG_8rzSOxEBRRqrACC0kmZgaERN8GkUs,209
119
+ pyxcp/recorder/rekorder.cpython-313-darwin.so,sha256=eJdOP68XJPafDp6gEPRzAiIY0y7X40fAt0ohdxV9Qok,530400
120
+ pyxcp/recorder/unfolder.hpp,sha256=myQB5iHXLMx-cNYizm6J04revO5eW4ErSHBr73Ftqu0,48337
121
+ pyxcp/recorder/converter/__init__.py,sha256=mqzH3jxGpFrtS2dHyfDLCYKeJycav3_-6z8svlI07eU,14452
122
+ pyxcp/recorder/.idea/recorder.iml,sha256=VS0bPCaxLv9_ekiFyBbbDcE9EokzLkqLX8tI6g_-kaA,241
123
+ pyxcp/recorder/.idea/vcs.xml,sha256=2Cg3gn9Srf2N_M7Ph6v0awcDagAOvhQn5XsMyXwYFQg,417
124
+ pyxcp/recorder/.idea/.gitignore,sha256=ClVIsXOqwO-UO7s6-FDWdve2Ud3tufjX8Gc1vCgJs9s,176
125
+ pyxcp/recorder/.idea/modules.xml,sha256=afB-6aqGDhgmK5Yv9RBUV5fxGAO14LxeFSM9soNFkqU,268
126
+ pyxcp/recorder/.idea/misc.xml,sha256=ZeoYTIMQZwzia_4-XE8LHT0w7vvhFvou_GVkdOPQLrA,137
127
+ pyxcp/recorder/.idea/sonarlint/issuestore/index.pb,sha256=pt_itWgvTAnMANXontA5cYFLHGjruv10VB_c2Ij5YFs,184
128
+ pyxcp/recorder/.idea/sonarlint/issuestore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ pyxcp/recorder/.idea/sonarlint/issuestore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728,sha256=YKcXNhekpl1LD7TEGHPjjXbmwyfY0c50DyveDrMVFxo,602
130
+ pyxcp/recorder/.idea/sonarlint/issuestore/b/4/b49006702b459496a8e8c94ebe60947108361b91,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
+ pyxcp/recorder/.idea/sonarlint/securityhotspotstore/index.pb,sha256=pt_itWgvTAnMANXontA5cYFLHGjruv10VB_c2Ij5YFs,184
132
+ pyxcp/recorder/.idea/sonarlint/securityhotspotstore/9/a/9a2aa4db38d3115ed60da621e012c0efc0172aae,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ pyxcp/recorder/.idea/sonarlint/securityhotspotstore/3/8/3808afc69ac1edb9d760000a2f137335b1b99728,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
+ pyxcp/recorder/.idea/sonarlint/securityhotspotstore/b/4/b49006702b459496a8e8c94ebe60947108361b91,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ pyxcp/stim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
+ pyxcp/vector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ pyxcp/vector/map.py,sha256=dSxM15eXvZh6izITdJmFxr1rplDUlfaJUbtrm2Xv-dE,2224
138
+ pyxcp/cpp_ext/event.hpp,sha256=X2_ThYx8fzz-XR9McmsKM2Hb9I2x7XZeQGy1OyUs6iE,1133
139
+ pyxcp/cpp_ext/cpp_ext.cpython-313-darwin.so,sha256=JK86uSyw9N_N0vXWNbnSsDe8hvKIwIFq7ncBRzmCZMM,355824
140
+ pyxcp/cpp_ext/blockmem.hpp,sha256=wSUDTgwO9zNn0c29hZ_MRH7cHDIFKma2MYVxip9ARNE,1184
141
+ pyxcp/cpp_ext/mcobject.hpp,sha256=QHv3QFGguakOfQZVOS3k0eFciIz1B5uGC54lhe00YJA,6274
142
+ pyxcp/cpp_ext/cpp_ext.cpython-314-darwin.so,sha256=u57cRj215gCBvXiG0AU6AelWOW5g_r-V73MZy7yW9uA,372336
143
+ pyxcp/cpp_ext/tsqueue.hpp,sha256=PuDd0kmj61afjW0yva6T8pZL3m4fPCeWsuvEyx2M-80,980
144
+ pyxcp/cpp_ext/extension_wrapper.cpp,sha256=q0WvdaTsYXRd6WaBT52bdldclI7LG1HvI9OEPfI0PnU,6409
145
+ pyxcp/cpp_ext/cpp_ext.cpython-312-darwin.so,sha256=LgJmQks1ISrefkFHQp9l1yF8i8rvOp7fvKg5VW3OLrQ,355568
146
+ pyxcp/cpp_ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ pyxcp/cpp_ext/sxi_framing.hpp,sha256=y-5a2tnHBPwsOjQa2iSRy9bEuePzpLURvYvwgrGbfok,11504
148
+ pyxcp/cpp_ext/helper.hpp,sha256=ONAsVupIqqmNDp8bgGWS0TfSYeCFkk3kwwZbbqsh0HQ,7813
149
+ pyxcp/cpp_ext/bin.hpp,sha256=QRDjy-yHsDH2uz-fZAxdwZXH40B6l7LsviJ6BTjp0HA,2568
150
+ pyxcp/cpp_ext/cpp_ext.cpython-311-darwin.so,sha256=lXmaqXNS0voOEE13mRrhLICoRadCbn-AI_rbsce_orM,355568
151
+ pyxcp/cpp_ext/daqlist.hpp,sha256=ch_wYTmfPws8Db_i_dlWThX_kXCKnPS_RhGIX1ZUspg,13622
152
+ pyxcp/cpp_ext/cpp_ext.cpython-310-darwin.so,sha256=5mELOu9QetOifgTD2EiEOXuOHX9oWfQqzCKFCJz6jdk,355488
153
+ pyxcp/cpp_ext/framing.hpp,sha256=9MJA8YUG2hApMGopPgD1F5ys9Tz12WWMocSxHYgiy3c,11299
154
+ pyxcp/cpp_ext/aligned_buffer.hpp,sha256=ovvMCPjmoj1PIeMH57FmiUwR39oG4WB-1poI3go7bw0,5279
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.2.1
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-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
+
@@ -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.