I have abort generated from , seems, trying to access it seems, an unused/uninitialized flash through memmapped direct address, for reading. Ignoring that specific reason, how do I handle properly the data aborts ..?
So the provided _dabort, in case of no RAM error and no flash error, jumps to custom_abort which is left blank by TI & I have to implement.

..which is left empty by default. I'm not sure what to do there, and , if I can recover / return from this into a usable system. So in my specific test case, it returns, right back into the same instruction which caused the abort, and tries again, and thus is stuck in the infinite loop. E.g.:

Abort due to that memory dereference.
I don't know if I should have some proper handler here, in a general way.