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 FILE의 392 행에 정의가 있습니다.

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

사용 가능한 모든 허브를 열거합니다.목록은 'list'로 반환됩니다.

반환 값
결과 : 목록의 허브 수 또는 오류 (음수)

이 메서드는 기기 부팅 시 호출되어야 합니다.

context_hub.h FILE의 400 행에 정의가 있습니다.

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

허브에 메시지 보내기

반환 값
결과 : 성공하면 0, 실패하면 오류 코드

context_hub.h FILE의 413 행에 정의가 있습니다.

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

HAL 구현이 컨텍스트 허브 서비스와 통신할 콜백을 등록합니다.

반환 값
결과 : 성공하면 0, 실패하면 오류 코드

context_hub.h FILE의 407 행에 정의가 있습니다.


이 구조체에 관한 문서는 다음 파일에서 생성되었습니다.