This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/AM5728: Function overflow issue

Part Number: AM5728

Tool/software: TI-RTOS

Hi Everybody , 

please I have a small function ( hereunder the code )  and created a task in my example code .

now on one PC is perfect , but same code on another  PC    ( in theroy some CCS and SDK )   whle running I get overflow .

I solved  increasding the stack 

so question : what should I check  to understand the issue ?   what can be set ?

here is the code example :

#define configMINIMAL_STACK_SIZE            1024

 

Void hiPrEventKickOffTask(UArg arg0, UArg arg1)

{

    OSAL_FPRINT_F(OSAL_STDOUT_HANDLE, "Starting main timer signal at period of %.3g microseconds \n", d_micro_seconds_period);

    OSAL_MemFree(hiPriEventKickOffTaskHandle);

    Timer_start(mainTimer);

}

 

 thank you 

regards

Calro