Getting Usage_FaultHandler exception when reading int32 value from the un-aligned void* ptr. Example: Here data pointer address is 0x20008911, which is unaligned by 4 byte. rpm = ((float) * (const s32 *)_data) / 256.0F;
We are porting applications from STM32F1 to STM32F427 MCU. Currently, we are not explicitly configuring SCB->CCR unaligned trap, based on ARM M4 manual, LDR, VLDR always triggers the fault if the address is not aligned properly.Do I require to use me...