Tool/software: Code Composer Studio
Board in question is a custom design with CC2640R2, checked out example-project called "simple_peripheral" in the Code Composer Studio.
When I put a printf("hello from main()\n"); inside main() function right before the BIOS_start() statement, it prints "[Cortex_M3_0] hello from main()" in console when I build and run the project.
When I put a similar printf statement inside the "SimpleBLEPeripheral_taskFxn" function (it is a TI-RTOS kernel task) - as the first statement, before the loop, nothing is ever printed to the console.
Breakpoints inside the "SimpleBLEPeripheral_taskFxn" function don't ever trigger either.
The code was not changed in other ways than modifying the board file (for the most part commenting things away for the time being, thought I wold begin reintroducing things there when things work at a basic level).
Any advice on how to get breakpoints/printfs working inside the TI-RTOS kernel tasks, such as "SimpleBLEPeripheral_taskFxn", would be greatly appreciated.