context_hub_module_t 结构体参考文档

context_hub_module_t 结构体参考文档

#include < context_hub.h >

数据字段

struct hw_module_t   常见
 
int(*  get_hubs )(struct context_hub_module_t *module, const struct context_hub_t **list)
 
int(*  subscribe_messages )(uint32_t hub_id, context_hub_callback cbk, void *cookie)
 
int(*  send_message )(uint32_t hub_id, const struct hub_message_t *msg)
 

详细说明

每个硬件模块都必须有一个名为 HAL_MODULE_INFO_SYM 的数据结构,并且此数据结构的字段必须以 hw_module_t 开头,后跟模块专用信息。

定义位于文件 context_hub.h 391 行

字段文档

struct hw_module_t common

定义位于文件 context_hub.h 392 行。

int(* get_hubs)(struct context_hub_module_t *module, const struct context_hub_t **list)

枚举所有可用集线器。该列表会在“list”中返回。

返回值
result : 列表中的集线器数量或错误(负数)

应在设备启动时调用此方法。

定义位于文件 context_hub.h 400 行。

int(* send_message)(uint32_t hub_id, const struct hub_message_t *msg)

向集线器发送消息

返回值
result :如果成功,则为 0;否则为错误代码

定义位于文件 context_hub.h 413 行

int(* subscribe_messages)(uint32_t hub_id, context_hub_callback cbk, void *cookie)

为 HAL 实现注册回调,以便与情境感知中心服务进行通信。

返回值
result :如果成功,则为 0;否则为错误代码

定义位于文件 context_hub.h 407 行。


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