#ifndef __TAI_BASIC_MODULE__ #define __TAI_BASIC_MODULE__ #include typedef enum _basic_module_attr_t { /** * @brief Custom attribute example * * @type bool * @flags CREATE_AND_SET */ TAI_MODULE_ATTR_CUSTOM = TAI_MODULE_ATTR_CUSTOM_RANGE_START, /** * @brief Custom list attribute example * * @type tai_u32_list_t * @flags CREATE_AND_SET */ TAI_MODULE_ATTR_CUSTOM_LIST, } basic_module_attr_t; #endif