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.
Tool/software: Code Composer Studio
Hi,
I'm trying to perform the TI-RTOS Basic Tutorial here.
Everything works fine execpting the suspension when debugging:
With a click on Resume, the code runs fine.
Now, when i try to run the execution graph i have to enable logging in the .cfg file and configure the kernel:
var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup'); LoggingSetup.sysbiosLoggerSize = 2048; LoggingSetup.loadLoggerSize = 0; LoggingSetup.mainLoggerSize = 0;
from this point, is no possible to run the code again. It seems like, it halts like bevore but CCS thinks, the process is running.
I have already searched the forum for this issue. There are many threads, but no answer how to prevent the suspension.
regards
Maximilian
Hi Todd,
yes, i halted the target.
But if i use the mentioned example the led doesn't start no blink. With disabled logging and after resuming the led starts to blink.
With enabled logging no halt occurs but the led doesn't blink. It seems like the code isn't running.
I think i'm running the current version, which is 1.30.0.25?
Hi Todd,
ToddMullanix said:You are definitely using the SimpleLink CC2640R2 SDK v1.30.00.25 (thanks for the pic!).
Out of curiosity, how did you get the link you had in the first post (the link in "here")? I didn't think we used hard-coded version numbers in the dev.ti.com links.
i simple google for it.
ToddMullanix said:I'm talking about the SimpleLink Academy version. If you go to dev.ti.com/.../ you'll get the most recent SimpleLink Academy. Although it looks like it is in the SDK, it's versioned separately. The current academy version is 1_12_01_16. You were using 1_12_00_00 which had a couple bugs. One was that the STACKSIZE in the lab was too small. I'm hoping that is the issue. Can you try the lab again from the link I gave.
i think now I have understand what you mean. If i move the Kernel, the example works.
But the suspension when i debug still exists. Why does it occur?
Thanks.
Maximilian