44 lines
1.9 KiB
C
44 lines
1.9 KiB
C
/* 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 : CanNm_Version.h
|
|
********************************************************************************
|
|
* Project/Product : AUTOSAR 4.0
|
|
* Title : CAN Network Management module Version head File
|
|
* Author : Hirain
|
|
********************************************************************************
|
|
* Description : CAN Network Management module Version head File
|
|
********************************************************************************
|
|
* Limitations : None
|
|
*
|
|
********************************************************************************
|
|
*
|
|
********************************************************************************
|
|
* Revision History:
|
|
*
|
|
* Version Date Initials CR# Descriptions
|
|
* --------- ---------- ------------ ---------- ---------------
|
|
* 01.00.00 02/09/2016 liya.zhu N/A Original
|
|
********************************************************************************
|
|
* END_FILE_HDR*/
|
|
#ifndef _CANNM_VERSION_H_
|
|
#define _CANNM_VERSION_H_
|
|
|
|
#define CANNM_VENDOR_ID STD_HIRAIN_VENDOR_ID
|
|
#define CANNM_MODULE_ID ((uint16)31)
|
|
#define CANNM_INSTANCE_ID (0)
|
|
#define CANNM_SW_MAJOR_VERSION (1)
|
|
#define CANNM_SW_MINOR_VERSION (0)
|
|
#define CANNM_SW_PATCH_VERSION (0)
|
|
|
|
#define CANNM_AR_RELEASE_MAJOR_VERSION (4)
|
|
#define CANNM_AR_RELEASE_MINOR_VERSION (0)
|
|
#define CANNM_AR_RELEASE_REVISION_VERSION (3)
|
|
|
|
#endif /*_CANNM_VERSION_H_*/
|
|
|