Part Number: LAUNCHXL-CC2650
Other Parts Discussed in Thread: CC2650
Tool/software: Code Composer Studio
Hello
I am using the Multi Role project as a starting point for the CC2650 LaunchXL.
I've defined a clock and made it call the function toggleRedLed every 5 seconds.
The function simply toggles the red LED, but it also prints stuff to the UART using Display_print, as can be seen:
If I use one Display_print in the function, it works good. But if I call Display_print twice or more, it only prints the first line and then gets stuck.
I need to print more than just one line (for some functions other than toggleRedLed).
I thought maybe I should define an event ID and use multi_role_enqueueMsg(EVT, pData), and print what I need from some other function that will be called from multi_role_processAppMsg(mrEvt_t *pMsg), but that doesn't work either.
Any idea whats the problem?
Thanks
Amit