STM32加密问题:怎样预置一段Flash读保护和清除读保护的程序 ?哈哈,找到了:
void Check_Flash(void)
{
FlagStatus status = RESET;
status = FLASH_GetReadOutProtectionStatus();
if(status != SET)
{
FLASH_Unlock(); /* Flash 解锁 */
/* ENABLE the ReadOut Protection */
FLASH_ReadOutProtection(ENABLE); //读保护使能
FLASH_EnableWriteProtection(FLASH_WRProt_AllPages); //写保护使能
Reset_System();
}
} |