Part Number: TDA4VM
Tool/software: TI C/C++ Compiler
Dear Sir:
I am using psdk_rtos_auto_j7_07_00_00_11.
I find a issue that the function's(AppUtils_Printf) output is overlap via uart bus.
And my code :
void tsk_sample0_main(UArg a0, UArg a1)
{
AppUtils_Printf(APP_UTILS_PRINT_MSG_NORMAL, " Hello sample0000!\n");
}
void tsk_sample1_main(UArg a0, UArg a1)
{
AppUtils_Printf(APP_UTILS_PRINT_MSG_NORMAL, " Hello sample1111!\n");
}
int main(void)
{
Task_Params taskParams;
Error_Block eb;
Error_init(&eb);
Task_Params_init(&taskParams);
taskParams.priority = 2;
Task_create(tsk_sample0_main, &taskParams, &eb);
Task_create(tsk_sample1_main, &taskParams, &eb);
AppUtils_Init();
BIOS_start(); /* does not return */
return(0);
}
And the output:
Hello sample1111! Hello sample1111!
the "Hello sample0000!" is not output.