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.

TDA4VM: C++ vector operations cause R5F hang-up, how to get rid of this kind of issue?

Part Number: TDA4VM

Dear TI colleague:

I have a bunch of c++ code porting to R5F as a decidcated remote service.  I found it randomly dead around some vector operations like:

std::vector<struct> sands;

for(i = 0; i < big_num; i++) {

    sands.push_back(a_sand);

}

It's not regularly happened issue. mostly dead in the vector operations like push_back, assign...

R5F hang-up when this issue happens. needs reboot to recorver.

I don't know if R5F have some trouble to support C++ features like vector.

Can you please help to analyze the possible reason and let me know what I need to pay attention to in using c++ on R5F?

Thank you very much..