Part Number: TMS320F28379D
Tool/software: TI-RTOS
Hi,
I'm working through the TI-RTOS workshop and I have just made it to lab 4 where I'm supposed to configure the AIU to be used in the project and check some of the execution information.
I believe I have followed all the necessary steps in the lab manual to configure the operation, but I don't get any information out of RTOS Analyzer's System Load.
I'm attaching my app.cfg for you to view.
For now, all I have are two idle tasks: taskFxn1 and 2, and the outline of both functions is more or less the same (different GPIO and variables. I use Log_info1() for both functions):
Void taskFxn1(UArg a0, UArg a1)
{
System_printf("enter taskFxn1()\n");
GpioDataRegs.GPBTOGGLE.bit.GPIO34 = 1;
taskFxn1Counter += 1;
Task_sleep(1000);
if (taskFxn1Counter >= 10000)
{
System_printf("taskFxn1Counter reached 10 000!\n");
taskFxn1Counter = 0;
}
else
{
System_printf("taskFxn1Counter value: %i\n", taskFxn1Counter);
}
Log_info1("Toggled LED [%u] times", taskFxn1Counter);
System_printf("exit taskFxn1()\n");
System_flush(); /* force SysMin output to console */
}
The LEDs blink and I get the System_printf() output to the console, but when I try to use the RTOS Analyzer, I get nothing. To halt the controller, I use Scripts->Full Halt. I have also used Susped, but that doesn't do the trick either.
Is there something I'm missing?
Best regards,
Tero