Problem with NVIC_SystemReset() after FLASH_ReadOutProtection(ENABLE)
Posted on July 28, 2015 at 23:04 I'm trying to set Flash read protection, so I run this at startup: if (FLASH_GetReadOutProtectionStatus() != SET) { FLASH_ReadOutProtection(ENABLE); } This works wrt read protection, in that if I ...