AzureRTOS with X-Cube-AI 7.1.0 connectivity missing header file
Compiling generated code in the CubeIDE 1.7.0 with AzureRTOS enabled under tab "Middleware" and a neural network enabled under tab "Software Packs" on an STM32U5 nucleo board exits with error message:
../AZURE_RTOS/App/app_azure_rtos.c:24:10: fatal error: app_x-cube-ai.h: No such file or directoryNo file `app_x-cube-ai.h` exists within my project, i suspect that a renaming between versions might be the cause of this issue. Sadly, i can't know the contents of the missing file, since i can't find information about it anywhere. Has it been renamed to something else or has the dependency moved?
EDIT:
Seems that the file should be generated in `project/Inc/`, as seen here on page 42. Which is not happening in my case.
Additionally, code generation generates a line
if (MX_X-CUBE-AI_Init(memory_ptr) != TX_SUCCESS)
{
/* USER CODE BEGIN MX_X-CUBE-AI_Init_Error */
/* USER CODE END MX_X-CUBE-AI_Init_Error */
}which is not valid syntax in the function name, as it contains a "-" sign twice and gives me all sorts of funny errors like
'MX_X' undeclared (first use in this function)'CUBE' undeclared (first use in this function)