Hello,
I'm working with the nRF9151, and I want to get useful information when a NULL pointer dereference happens, as I am used to on other devices. However, when a NULL pointer dereference happens, all I get in my log is
FATAL ERROR: SecureFault Assert:stdio_init,0x00000060
I read on devacademy that because of TrustZone, I cannot get more info when a NULL pointer dereferences happens. But I cannot choose what errors I encounter, and NULL pointer dereferences are a common bug! Is there really nothing I can do to get e.g. the program counter or something? When I cause a crash in other ways (e.g. __asm__("udf #0");) I get a list of all the registers in the CPU including the PC printed in my terminal.
Any help is appreciated,
-Fridtjof