最終更新:2017-03-23 (木) 18:08:27 (2583d)  

hw_module_t
Top / hw_module_t

Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
and the fields of this data structure must begin with hw_module_t
followed by module specific information.

構造体

  • typedef struct hw_module_t {
        uint32_t tag;
        uint16_t module_api_version;
        uint16_t hal_api_version;
        const char *id;
        const char *name;
        const char *author;
        struct hw_module_methods_t* methods;
        void* dso;
        uint64_t reserved[32-7];
    }

定義