29 lines
537 B
C
Executable File
29 lines
537 B
C
Executable File
#ifndef __HAL_IRLED_H__
|
|
#define __HAL_IRLED_H__
|
|
#include "hal.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
//
|
|
// 数据类型定义
|
|
//
|
|
////////////////////////////////////////////////////////////
|
|
|
|
/*irled init interface define,should be implement if needed*/
|
|
uint32_t hal_irled_init();
|
|
|
|
/*irled deinit interface define,should be implement if needed*/
|
|
uint32_t hal_irled_deinit();
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* __HAL_IRLED_H__ */
|