Hardfault, when reading TEMPSENSOR_CAL1_ADDR with STM32H56x
#define TEMPSENSOR_CAL1_ADDR ((uint16_t*) (0x08FFF814UL)) /* Address of parameter TS_CAL1: On STM32H5,
temperature sensor ADC raw data acquired at temperature 30 DegC
(tolerance: +-5 DegC), Vref+ = 3.3 V (tolerance: +-10 mV). */uint16_t regval = *TEMPSENSOR_CAL1_ADDR;
as soon as this address is read, the CPU goes into Hardfault. I double checked the Address in the Datasheet..
also restarts the CPU, when I try to show this Memory with the debugger.
also tested it with a Nucleo-H563ZI.
the same access with other STM32 CPUs (U5, L4 etc) work with no problems.

