34 lines
870 B
C
34 lines
870 B
C
/**
|
|
******************************************************************************
|
|
* @file apl.h
|
|
* @author William Liang
|
|
* @version V1.0.0
|
|
* @date 07/26/2013
|
|
* @brief This file contains the headers of the application layer.
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __APL_H__
|
|
#define __APL_H__
|
|
|
|
#include "Basedefine.h"
|
|
|
|
typedef struct
|
|
{
|
|
u8 venderID[2];//const 厂商代码
|
|
u8 chipID[2];//const 芯片代码
|
|
u8 date;//const 日
|
|
u8 month;//const 月
|
|
u8 year;//const 年
|
|
u8 version[2];//const 版本
|
|
}Manufacturer_Version;
|
|
|
|
|
|
const Manufacturer_Version * get_apl_version_ptr(void);
|
|
void ReadVersion(void);
|
|
|
|
#endif /* __APL_H__ */
|
|
|
|
/******************* (C) COPYRIGHT 2013 Robulink Technology Ltd.*****END OF FILE****/
|