Porting STM32F070 to STM32F446 issue with user data in option bytes
Hello, we are currently porting some code from STM32F070 to STM32F446. In the original code, we used to use a generic byte from the option bytes to keep some flags between two resets, without using one page of the onboard flash memory, using something like:
FLASH_ProgramOptionByteData(ADRESSE_OPTION_BYTE_DATA0, myFlags);Now, on our new platform based on the STM32F446, it seems like there's no more generic option byte where to store user flags (without modifying actual options of the MCU).
Is there a way to keep one byte in a flash storage, without involving the alteration of a full page of the embedded flash ?