河北水利局项目

This commit is contained in:
2025-12-15 16:07:49 +08:00
commit f11a7c2b95
1146 changed files with 452892 additions and 0 deletions

33
APP/apl.h Normal file
View File

@@ -0,0 +1,33 @@
/**
******************************************************************************
* @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****/