我将模型导入CubeMX中的CubeAI,生成代码后进行模型初始化
定义相关参数
ai_handle network;
float aiInData[AI_NETWORK_IN_1_SIZE];
float aiOutData[AI_NETWORK_OUT_1_SIZE];
ai_u8 activations[AI_NETWORK_DATA_ACTIVATIONS_SIZE];
模型初始化
static void AI_Init(void)
{
ai_error err;
/* Create a local array with the addresses of the activations buffers */
const ai_handle act_addr[] = { activations };
/* Create an instance of the model */
err = ai_network_create_and_init(&network, act_addr, NULL);
if (err.type != AI_ERROR_NONE) {
printf("ai_network_create error - type=%d code=%d\r\n", err.type, err.code);
Error_Handler();
}
ai_input = ai_network_inputs_get(network, NULL);
ai_output = ai_network_outputs_get(network, NULL);
}
这个代码是原封不动抄自GitHub的代码,但是模型初始化失败,并报错 ai_network_create error - type=51 code=65
网上大多建议开启CRC,但是我已经在 AI_Init() 之前加入 __HAL_RCC_CRC_CLK_ENABLE(),但是模型初始化依然失败
请问是否有遇到过类似问题的,如果能帮忙解答我将感激不尽。
本帖最后由 FuShenxiao 于 2024-10-1 10:59 编辑