官方淘宝店 易迪拓培训 旧站入口
首页 > 微波射频 > 射频工程师交流 > STM32加密问题:怎样预置一段Flash读保护和清除读保护的程序

STM32加密问题:怎样预置一段Flash读保护和清除读保护的程序

05-08
怎样预置一段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();
        }
}

如果你觉得还行
可以去我家看看
y-ec.com

Top