[components/drivers]

added function declaration
This commit is contained in:
DavidLin1577 2021-06-23 14:40:02 +08:00
parent 6f1a505cd2
commit 109efcbcd5
1 changed files with 18 additions and 1 deletions

View File

@ -6,9 +6,26 @@
* Change Logs:
* Date Author Notes
* 2019-01-31 flybreak first version
* 2021-06-23 linpeng added function declaration
*/
#ifndef __SENSOR_H__
#define __SENSOR_H__
#include <rtthread.h>
#include <rtdevice.h>
#ifdef __cplusplus
extern "C"
{
#endif
int rt_hw_sensor_register(rt_sensor_t sensor,
const char *name,
rt_uint32_t flag,
void *data);
#ifdef __cplusplus
}
#endif
#endif /*__SENSOR_H__*/