How to protect my application code read from MCU?
I want to protect my code by writing OB using HALbool SetFlashReadProtection(bool state) { FLASH_OBProgramInitTypeDef OptionsBytesStruct = {0}; HAL_FLASHEx_OBGetConfig(&OptionsBytesStruct); if(state == true) { if(OptionsBytesStruct.RDP...