nRF52832 unaligned memory access

Hi,

Does not nRF52832 support unaligned memory access ?

I had an instruction like this for which the FW was crashing.

Struct A a= *((Struct A*)pSourcePtr);
I replaced the same using a memcpy which will do a byte copy and it does work. 

memcpy(pDstPtr, pSourcePtr, sizeof(Struct A));

Related