H743 using RAM_D1 can not handle std:string greater than 15
Hello
I've been working on a project on an nucleo F411RE and everythings been going fine.
I then had to port the project to nucleo H743ZI.
As i am using the DMA i had to change the ram from DTCRAM to RAM_D1.
Before the change to RAM_D1 i could have strings greater than 15 chars, e.g.
std::string test("12345678901234567890");
Would not crash my program.
After changing to RAM_D1 the program would get to the string and then go directly to the void _exit (int status) loop.
Anyone have any ideas what might be the problem ?
