Hello, we are using the NRF5340 with the new Zephyr SDK in our design and we are having issues reading the application core memory from the network core.
A read to any address in the application core RAM always results in a HardFault:
crashVal = *(uint32_t*)0x20010000;
CFSR after the HardFault: 0x00008200
Even though it shouldn't be necessary, we are setting NRF_DCNF->EXTRAM->PROTECT to 0 in the app core before starting the network core.
Is there any other register that needs to be set to allow this type of memory access from the network core?
Thank you