├── .gitignore ├── README.md └── TSMasterApi ├── Demo ├── Flexray_Demo_02All.py ├── TOSUN_Demo.py ├── TSETH_TCP_Demo.py ├── TSETH_UDP_Demo.py ├── TSMasterAPI_Demo_qt5.py ├── TSMaster_Message_Send_and_Receive.py ├── TSMaster_On_Event_Demo.py ├── db_demo.py ├── flexray_demo.py ├── rbs_signal_wrie_read_demo.py ├── readme.md ├── test │ ├── .TSProj │ ├── .gitignore │ ├── DB │ │ ├── CAN │ │ │ ├── CANComfort.pdbc │ │ │ ├── CANFDluotuo.pdbc │ │ │ ├── CAN_FD_Powertrain.pdbc │ │ │ ├── CAPLdll.pdbc │ │ │ └── PowerTrain.pdbc │ │ └── FlexRay │ │ │ ├── PowerTrain_v2_033328.pfibex │ │ │ └── SDB22200_G426_ICE_High_BackboneFR_220706.pfibex │ ├── Diagnostic │ │ └── Diagnostic │ │ │ ├── Diagnostic.TSC │ │ │ ├── DiagnosticStruct.jason │ │ │ ├── FlashDrv.s19 │ │ │ └── TSDiagnosticFlow.xml │ ├── MiniProgram │ │ └── h │ │ │ └── TSMaster.h │ ├── Readme.txt │ ├── libs │ │ └── CCode2287 │ │ │ ├── TSMasterBaseInclude.h │ │ │ └── TSMasterBaseSource.c │ └── lyt │ │ ├── Empty.lyt │ │ └── TSMaster_CurrentLayout.lyt ├── tsmasterAPI_can_Demo.py ├── tsmasterAPI_lin_Demo.py ├── tsmaster_singal_write_read_demo.py └── tsmaster_uds_demo.py ├── TSMasterAPI ├── TSAPI.py ├── TSCallback.py ├── TSDirver.py ├── TSEnum.py ├── TSFibex_parse.py ├── TSMasterAPI.py ├── TSStruct.py └── __init__.py └── databases ├── CAN_FD_Powertrain.dbc ├── LINDemo.ldf └── PowerTrain_v2.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/README.md -------------------------------------------------------------------------------- /TSMasterApi/Demo/Flexray_Demo_02All.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/Flexray_Demo_02All.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/TOSUN_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/TOSUN_Demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/TSETH_TCP_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/TSETH_TCP_Demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/TSETH_UDP_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/TSETH_UDP_Demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/TSMasterAPI_Demo_qt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/TSMasterAPI_Demo_qt5.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/TSMaster_Message_Send_and_Receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/TSMaster_Message_Send_and_Receive.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/TSMaster_On_Event_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/TSMaster_On_Event_Demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/db_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/db_demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/flexray_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/flexray_demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/rbs_signal_wrie_read_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/rbs_signal_wrie_read_demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/readme.md -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/.TSProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/.TSProj -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/.gitignore -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/CAN/CANComfort.pdbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/CAN/CANComfort.pdbc -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/CAN/CANFDluotuo.pdbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/CAN/CANFDluotuo.pdbc -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/CAN/CAN_FD_Powertrain.pdbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/CAN/CAN_FD_Powertrain.pdbc -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/CAN/CAPLdll.pdbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/CAN/CAPLdll.pdbc -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/CAN/PowerTrain.pdbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/CAN/PowerTrain.pdbc -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/FlexRay/PowerTrain_v2_033328.pfibex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/FlexRay/PowerTrain_v2_033328.pfibex -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/DB/FlexRay/SDB22200_G426_ICE_High_BackboneFR_220706.pfibex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/DB/FlexRay/SDB22200_G426_ICE_High_BackboneFR_220706.pfibex -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/Diagnostic/Diagnostic/Diagnostic.TSC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/Diagnostic/Diagnostic/Diagnostic.TSC -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/Diagnostic/Diagnostic/DiagnosticStruct.jason: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/Diagnostic/Diagnostic/FlashDrv.s19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/Diagnostic/Diagnostic/FlashDrv.s19 -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/Diagnostic/Diagnostic/TSDiagnosticFlow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/Diagnostic/Diagnostic/TSDiagnosticFlow.xml -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/MiniProgram/h/TSMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/MiniProgram/h/TSMaster.h -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/Readme.txt -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/libs/CCode2287/TSMasterBaseInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/libs/CCode2287/TSMasterBaseInclude.h -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/libs/CCode2287/TSMasterBaseSource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/libs/CCode2287/TSMasterBaseSource.c -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/lyt/Empty.lyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/lyt/Empty.lyt -------------------------------------------------------------------------------- /TSMasterApi/Demo/test/lyt/TSMaster_CurrentLayout.lyt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/test/lyt/TSMaster_CurrentLayout.lyt -------------------------------------------------------------------------------- /TSMasterApi/Demo/tsmasterAPI_can_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/tsmasterAPI_can_Demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/tsmasterAPI_lin_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/tsmasterAPI_lin_Demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/tsmaster_singal_write_read_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/tsmaster_singal_write_read_demo.py -------------------------------------------------------------------------------- /TSMasterApi/Demo/tsmaster_uds_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/Demo/tsmaster_uds_demo.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSAPI.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSCallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSCallback.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSDirver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSDirver.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSEnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSEnum.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSFibex_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSFibex_parse.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSMasterAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSMasterAPI.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/TSStruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/TSMasterAPI/TSStruct.py -------------------------------------------------------------------------------- /TSMasterApi/TSMasterAPI/__init__.py: -------------------------------------------------------------------------------- 1 | from .TSAPI import * -------------------------------------------------------------------------------- /TSMasterApi/databases/CAN_FD_Powertrain.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/databases/CAN_FD_Powertrain.dbc -------------------------------------------------------------------------------- /TSMasterApi/databases/LINDemo.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/databases/LINDemo.ldf -------------------------------------------------------------------------------- /TSMasterApi/databases/PowerTrain_v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sy950915/TSMasterAPI/HEAD/TSMasterApi/databases/PowerTrain_v2.xml --------------------------------------------------------------------------------