I'm having trouble storing variable values in FLASH memory. I am currently using the STU32F765VI MCU, I would like to know what address range I can use to store. What are the functions of the HAL library?
I am currently trying as follows:
HAL_FLASH_Unlock();
HAL_FLASH_Program(FLASH_TYPEPROGRAM_HALFWORD,0x40023BFD,10);
HAL_FLASH_Lock();
However, no data is recorded.
