Other Parts Discussed in Thread: MSP-EXP430F5529LP
Tool/software: TI-RTOS
Hello,
I am trying to build the uartconsole_MSP_EXP430F5529LP_TI example from resource explorer in ccsv8 for MSP-EXPF5529LP launchpad.
Task_Params_init(&taskParams);
taskParams.stackSize = TASKSTACKSIZE;
taskParams.stack = &task0Stack;
Task_construct(&task0Struct, (Task_FuncPtr)consoleFxn, &taskParams, NULL);
/* Turn on user LED */
GPIO_write(Board_LED0, Board_LED_ON);
This part tells me after successful initialization LED0 on the board is supposed to light up. But no such thing happens. Also when I connect to backchannel UART via serial terminal, no console runs.
What I do is open the example project and build&flash it. I tried to debug but the breakpoint I set in the main() function never hit. I am not sure I am doing right because I don't have much experience with RTOS debugging.
What am I doing wrong?
Thanks in advance..