Help, How to set Read protection in STM32F207
Posted on August 18, 2011 at 07:34use API set the RDP to Level_2 : if ((*(__IO uint8_t*)(OPTCR_BYTE1_ADDRESS) != (uint8_t)OB_RDP_Level_2)) { FLASH_OB_Unlock(); FLASH_OB_RDPConfig(OB_RDP_Level_2); FLASH_OB_Lock(); } and read value from OP...