/* BEGIN_FILE_HDR ******************************************************************************** * NOTICE * This software is the property of HiRain Technologies. Any information * contained in this doc should not be reproduced, or used, or disclosed * without the written authorization from HiRain Technologies. ******************************************************************************** * File Name : UT.h ******************************************************************************** * Project/Product : AUTOSAR 4.2 * Title : Testability Protocol and Service Primitives * Author : mingqing.tang ******************************************************************************** * Description : The header file UT.h contains the declaration of the * Testability Protocol and Service Primitives module API, * 'extern' declarations of constants, global data,type * definitions and services. * ******************************************************************************** * Limitations : only used for AUTOSAR 4.2 version * ******************************************************************************** * ******************************************************************************** * Revision History: * * Version Date Initials CR# Descriptions * --------- ---------- ------------- ---------- --------------- * 01.00.00 13/06/2018 mingqing.tang N/A Original * 01.00.01 30/07/2018 mingqing.tang N/A Add ICMP primitive * 01.00.02 03/07/2019 mingqing.tang N/A Add the callout * 01.00.03 25/07/2019 mingqing.tang N/A Add ConfigSocket * 01.00.06 02/09/2019 mingqing.tang N/A Update primitive format to V1.2 ******************************************************************************** * END_FILE_HDR*/ #ifndef _UPPER_TESTER_H_ #define _UPPER_TESTER_H_ /******************************************************************************* * Includes *******************************************************************************/ #include "UT_Types.h" /******************************************************************************* * Macro *******************************************************************************/ #define UT_MAJOR_VERSION (1) #define UT_MINOR_VERSION (0) #define UT_PATCH_VERSION (6) #define UT_SPEC_MAJOR_VERSION (1) #define UT_SPEC_MINOR_VERSION (2) #define UT_SPEC_PATCH_VERSION (0) /******************************************************************************* * Global Function Declaration *******************************************************************************/ extern FUNC(void, UT_CODE) UT_Init ( void ); extern FUNC(void, UT_CODE) UT_MainFunction ( void ); #endif /* _UPPER_TESTER_H_ */