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.
Hey, I have checked ROV here what i got is "All ROV views have been run and no errors were encountered. In BIOS, this includes a check of the System stack usage and all Task stacks."Vikram Adiga said:Is that all that is being printed out? You can open ROV from Tools > ROV and check for BIOS > Scan for Errors .. view. This view gives more info about the error.
Hope this helps,
Vikram
My guess from the output message and the ROV message is that the Task stack/heap size may be less which may have caused Task to fail. Just check the Task view in ROV to see if there is any error message.
Also, a few things that we can try are:
1) You can increase Task stack size and check.
2) If you are using SysMin module, increase the "SysMin.bufSize" value. This will allow the entire Error message to be printed on the console.
Hopefully these solutions should work.
Vikram
Can you please post the entire error message after the changes you made?
Vikram
Hi Bahubali,
This message is not the entire Error message. Since you are using SysMin (which is a buffer based printf), the buffer is being overwritten since the Error message is large. To correct this, either you can use SysStd instead of SysMin for debugging or increase SysMin buffer.
With the full Error message we can determine what kind of an error it is.
Vikram