How can i disable WRP with RDP is active? STM32F103RGT6
I am use this code for write page with disabling WRP:FLASH_Unlock(); if( FLASH->WRPR != 0xFFFFFFFF ) //WRP is active for any pages { FLASH_EraseOptionBytes(); NVIC_SystemReset(); //according to the manual } if( FLASH_ErasePage( address ) != FLAS...