context_hub_module_t 構造体リファレンス

context_hub_module_t 構造体リファレンス

#include < context_hub.h >

データ フィールド

struct hw_module_t   common
 
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 の定義。


この構造体のドキュメントは、次のファイルから生成されました。