Diag-Client-Lib
|
Welcome to Diagnostic Client library that is developed based on motivation taken from Adaptive AUTOSAR Diagnostic Specification 21-11
Diagnostic Client library is developed according to the requirements needed on the diagnostic tester side. Some internal APIs is implemented based on API Reference mentioned in Adaptive AUTOSAR Diagnostic Specification 21-11
Diagnostic Client library acts as diagnostic tester library that is linked to a user application which wants to send diagnostic requests to multiple ECU over a network.
Diagnostic Client library supports below Diagnostic Protocols :-
Diagnostic Client library supports opening of multiple conversation(tester instance) for sending diagnostic request to multiple ECU at the same time.
The documentation of this project can be found here GitHub pages
In this section, you will learn how to build and install Diagnostic Client Library and also learn how to use diag-client-lib
The following packages are needed to build and install Diagnostic Client library:-
Package | Usage | Recommended version |
---|---|---|
CMake | build system | >=3.5 |
COVESA DLT | logging & tracing | >= 2.18.8 |
Boost | asio operation | >= 1.79.0 |
You can also execute to install dependencies :-
The following packages are needed to build and install Diagnostic Client library:-
Package | Usage | Recommended version |
---|---|---|
CMake | build system | >=3.5 |
Boost | asio operation | >= 1.79.0 |
Note: Covesa DLT is not directly supported in Windows. For more information see Dlt Issue
Diagnostic Client Library has to be linked first either statically or dynamically with executable before usage. Diagnostic Client library can be built as shared library by setting the below CMake Flag to ON
Main instance of Diagnostic Client Library must be created using CreateDiagnosticClient
method call by passing the path to diag-client config json file as parameter.
diag-client config json file can be modified as per user requirements.
Once Diagnostic Client Library is instantiated and initialized, GetDiagnosticClientConversation
can be used to get the tester/conversation instance by passing the tester/conversation name.
Multiple tester instance can be created using these method as provided in the configuration json file.
It also supports finding the available Diagnostic ECUs in the whole network through vehicle discovery.
Check the [example](examples) application on how Diagnostic Client Library can be linked and used. Example can be built too by enabling CMake Flag:-
Diagnostic Client Library supports logging and tracing by using the logging infrastructure from COVESA DLT. Logging is switched OFF by default using the CMake Flag, can be switched ON by enabling the flag:-
Note: DLT logging is not supported in Windows. So, CMake Flag must be switched OFF.
Diagnostic Client Library uses doxygen to generate the documentation of the public api's. Doxygen build is switched OFF by default using the CMake Flag, can be switched ON by enabling the flag:-
In the future, we will have internal code documentation too.
Component requirements implemented are documented REQ
You can add new issues with label bug
for notifying us about any defect in library.
For adding more features you can add new issues with label enhancement
so that we can work on it.
Full information on project license is available here [LICENSE](LICENSE). Boost License is available here LICENSE.
For any other queries regarding diag-client-lib
, please drop a mail to iandiehard@outlook.com
.
Original idea, design and implementation done by Avijit Dey iandiehard@outlook.com
.