User Activity

I am having trouble to get OBK data reading working on the STM32H562 / H563 (which do not support secure storage because they are lacking hardware crypto support).My plan is to store keys in the OBK area, (encrypted with some storage key of my own) a...
Today, I suddenly experienced a bus fault on my stm32h563 which I traced down toDBGMCU->APB1FZR1 |= DBGMCU_APB1FZR1_DBG_IWDG_STOP;which I use to configure the watchdog to stop when the core has been halted by the debugger. fault status registers:SCB-...
Should ICACHE be invalidated when a double ECC error occurs?
In the FLASH_ECCDETR register, the ADDR_ECC field description contains:"The address in ADDR_ECC is relative to the flash memory area where the error occurred(user flash memory, system flash memory, data area, read-only/OTP area)."But I'm having troub...
I'm trying to use the STM32H563 HASH peripheral to speed up sha256 calculations.The examples all use HAL_HASH_Start() to write the entire message at once.However, I'd like to feed chunks of data to the peripheral. The OEMiROT mbedtls sha256_alt drive...