sensors_poll_device_1 结构参考文档

sensors_poll_device_1 结构参考

#include < sensors.h >

数据字段

union {
   struct sensors_poll_device_t     v0
 
   struct {
      struct hw_device_t     common
 
      int(*    activate )(struct sensors_poll_device_t
         *dev, int sensor_handle, int
         enabled)
 
      int(*    setDelay )(struct sensors_poll_device_t
         *dev, int sensor_handle,
         int64_t sampling_period_ns)
 
      int(*    poll )(struct sensors_poll_device_t
         *dev, sensors_event_t *data,
         int count)
 
   } 
 
}; 
 
int(*  batch )(struct sensors_poll_device_1 *dev, int sensor_handle, int flags, int64_t sampling_period_ns, int64_t max_report_latency_ns)
 
int(*  flush )(struct sensors_poll_device_1 *dev, int sensor_handle)
 
int(*  inject_sensor_data )(struct sensors_poll_device_1 *dev, const sensors_event_t *data)
 
void(*  reserved_procs [7])(void)
 

详细说明

定义位于文件 sensors.h 1301 行。

字段文档

union { ... }
int(* activate)(struct sensors_poll_device_t *dev, int sensor_handle, int enabled)

定义位于文件 sensors.h 1318 行。

int(* batch)(struct sensors_poll_device_1 *dev, int sensor_handle, int flags, int64_t sampling_period_ns, int64_t max_report_latency_ns)

定义位于文件 sensors.h 1349 行。

struct hw_device_t common

定义位于文件 sensors.h 1309 行。

int(* flush)(struct sensors_poll_device_1 *dev, int sensor_handle)

定义位于文件 sensors.h 1365 行。

int(* inject_sensor_data)(struct sensors_poll_device_1 *dev, const sensors_event_t *data)

定义位于文件 sensors.h 1374 行。

int(* poll)(struct sensors_poll_device_t *dev, sensors_event_t *data, int count)

返回传感器数据数组。

定义位于文件 sensors.h 1333 行。

void(* reserved_procs[7])(void)

定义位于文件 sensors.h 1376 行。

int(* setDelay)(struct sensors_poll_device_t *dev, int sensor_handle, int64_t sampling_period_ns)

为指定传感器设置事件的周期(以纳秒为单位)。如果 sampling_period_ns > max_delay,则会截断为 max_delay;如果 sampling_period_ns < min_delay,则会替换为 min_delay。

定义位于文件 sensors.h 1327 行。

定义位于文件 sensors.h 1306 行。


此结构体的文档是根据以下文件生成的: