tsmasterapi 2025.10.29.1701__tar.gz → 2025.11.4.1705__tar.gz

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 tsmasterapi might be problematic. Click here for more details.

Files changed (21) hide show
  1. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/PKG-INFO +1 -4
  2. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSAPI.py +62 -0
  3. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSCallback.py +1 -4
  4. tsmasterapi-2025.11.4.1705/TSMasterAPI/__init__.py +2 -0
  5. {tsmasterapi-2025.10.29.1701/TSMasterAPI/windows/bin64 → tsmasterapi-2025.11.4.1705/TSMasterAPI/windows/bin}/TSMaster.dll +0 -0
  6. tsmasterapi-2025.11.4.1705/TSMasterAPI/windows/bin64/TSMaster.dll +0 -0
  7. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI.egg-info/PKG-INFO +1 -4
  8. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/setup.py +1 -1
  9. tsmasterapi-2025.10.29.1701/TSMasterAPI/__init__.py +0 -2
  10. tsmasterapi-2025.10.29.1701/TSMasterAPI/windows/bin/TSMaster.dll +0 -0
  11. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/README.rst +0 -0
  12. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSDirver.py +0 -0
  13. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSEnum.py +0 -0
  14. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSFibex_parse.py +0 -0
  15. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSMasterAPI.py +0 -0
  16. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI/TSStruct.py +0 -0
  17. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI.egg-info/SOURCES.txt +0 -0
  18. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI.egg-info/dependency_links.txt +0 -0
  19. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/TSMasterAPI.egg-info/top_level.txt +0 -0
  20. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/license.txt +0 -0
  21. {tsmasterapi-2025.10.29.1701 → tsmasterapi-2025.11.4.1705}/setup.cfg +0 -0
@@ -1,8 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tsmasterapi
3
- Version: 2025.10.29.1701
3
+ Version: 2025.11.4.1705
4
4
  Summary: Use TSMaster hardware
5
- Home-page: UNKNOWN
6
5
  Author: seven
7
6
  Author-email: 865762826@qq.com
8
7
  License: Apache License
@@ -30,5 +29,3 @@ Can only be used by WIN32 Python
30
29
  [联系作者](865762826@qq.com)
31
30
 
32
31
  to write your content.
33
-
34
-
@@ -3338,6 +3338,20 @@ tssocket_tcp_send = dll.tssocket_tcp_send
3338
3338
  tssocket_tcp_send.restype = s32
3339
3339
  tssocket_tcp_send.argtypes = [s32,pu8,s32]
3340
3340
 
3341
+ #arg[0] s
3342
+ #arg[1] AData
3343
+ #arg[2] ASize
3344
+ tssocket_tcp_send_sync = dll.tssocket_tcp_send_sync
3345
+ tssocket_tcp_send_sync.restype = s32
3346
+ tssocket_tcp_send_sync.argtypes = [s32,pu8,s32]
3347
+
3348
+ #arg[0] s
3349
+ #arg[1] AData
3350
+ #arg[2] ASize
3351
+ tssocket_tcp_send_async = dll.tssocket_tcp_send_async
3352
+ tssocket_tcp_send_async.restype = s32
3353
+ tssocket_tcp_send_async.argtypes = [s32,pu8,s32]
3354
+
3341
3355
  #arg[0] s
3342
3356
  #arg[1] AIPEndPoint
3343
3357
  #arg[2] AData
@@ -6554,3 +6568,51 @@ configure_lin_baudrate = dll.configure_lin_baudrate
6554
6568
  configure_lin_baudrate.restype = s32
6555
6569
  configure_lin_baudrate.argtypes = [s32,single,s32]
6556
6570
 
6571
+ #arg[0] ACAN
6572
+ #arg[1] AIsTx
6573
+ simulate_can_async = dll.simulate_can_async
6574
+ simulate_can_async.restype = s32
6575
+ simulate_can_async.argtypes = [PLIBCAN,u8]
6576
+
6577
+ #arg[0] ACANFD
6578
+ #arg[1] AIsTx
6579
+ simulate_canfd_async = dll.simulate_canfd_async
6580
+ simulate_canfd_async.restype = s32
6581
+ simulate_canfd_async.argtypes = [PLIBCANFD,u8]
6582
+
6583
+ #arg[0] ALIN
6584
+ #arg[1] AIsTx
6585
+ simulate_lin_async = dll.simulate_lin_async
6586
+ simulate_lin_async.restype = s32
6587
+ simulate_lin_async.argtypes = [PLIBLIN,u8]
6588
+
6589
+ #arg[0] AFlexRay
6590
+ #arg[1] AIsTx
6591
+ simulate_flexray_async = dll.simulate_flexray_async
6592
+ simulate_flexray_async.restype = s32
6593
+ simulate_flexray_async.argtypes = [PLIBFlexRay,u8]
6594
+
6595
+ #arg[0] AEthernetHeader
6596
+ #arg[1] AIsTx
6597
+ simulate_ethernet_async = dll.simulate_ethernet_async
6598
+ simulate_ethernet_async.restype = s32
6599
+ simulate_ethernet_async.argtypes = [PLIBEthernetHeader,u8]
6600
+
6601
+ #arg[0] ASymbolAddress
6602
+ #arg[1] ARaw
6603
+ can_rbs_set_signal_raw_by_address = dll.can_rbs_set_signal_raw_by_address
6604
+ can_rbs_set_signal_raw_by_address.restype = s32
6605
+ can_rbs_set_signal_raw_by_address.argtypes = [pchar,u64]
6606
+
6607
+ #arg[0] ASymbolAddress
6608
+ #arg[1] ARaw
6609
+ lin_rbs_set_signal_raw_by_address = dll.lin_rbs_set_signal_raw_by_address
6610
+ lin_rbs_set_signal_raw_by_address.restype = s32
6611
+ lin_rbs_set_signal_raw_by_address.argtypes = [pchar,u64]
6612
+
6613
+ #arg[0] ASymbolAddress
6614
+ #arg[1] ARaw
6615
+ lin_rbs_get_signal_raw_by_address = dll.lin_rbs_get_signal_raw_by_address
6616
+ lin_rbs_get_signal_raw_by_address.restype = s32
6617
+ lin_rbs_get_signal_raw_by_address.argtypes = [pchar,pu64]
6618
+
@@ -47,10 +47,7 @@ TOnAutoSARPDUQueueEvent = WINFUNCTYPE(None,s32,pchar,u64,u8,u32,u32,pu8)
47
47
  # Arg[3] ASrcDataLength
48
48
  # Arg[4] ASrcSecuredDataLength
49
49
  # Arg[5] ASrcData
50
- # Arg[6] AIsCopyToNewBuffer
51
- # Arg[7] ANewBufferDataLength
52
- # Arg[8] ANewBuffer
53
- TOnAutoSARPDUPreTxEvent = WINFUNCTYPE(s32,s32,pchar,u32,u32,u32,pu8,pu8,pu32,pu8)
50
+ TOnAutoSARPDUPreTxEvent = WINFUNCTYPE(s32,s32,pchar,u32,u32,u32,pu8)
54
51
  # Arg[0] ASignalName
55
52
  # Arg[1] ARawValue
56
53
  # Arg[2] APhyValue
@@ -0,0 +1,2 @@
1
+ from .TSAPI import *
2
+ __version__ = 'v2025.11.4.1705'
@@ -1,8 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tsmasterapi
3
- Version: 2025.10.29.1701
3
+ Version: 2025.11.4.1705
4
4
  Summary: Use TSMaster hardware
5
- Home-page: UNKNOWN
6
5
  Author: seven
7
6
  Author-email: 865762826@qq.com
8
7
  License: Apache License
@@ -30,5 +29,3 @@ Can only be used by WIN32 Python
30
29
  [联系作者](865762826@qq.com)
31
30
 
32
31
  to write your content.
33
-
34
-
@@ -21,7 +21,7 @@ with open("README.rst", "r",encoding="utf-8") as f:
21
21
 
22
22
  #
23
23
  setup(name='tsmasterapi', # 包名
24
- version="2025.10.29.1701",#__version__, # 版本号
24
+ version=__version__, # 版本号
25
25
  description='Use TSMaster hardware',
26
26
  long_description=long_description,
27
27
  author='seven',
@@ -1,2 +0,0 @@
1
- from .TSAPI import *
2
- __version__ = 'v2025.10.16.1684'