STM32L5 - User Option Byte Access
The STM32L5 reference manual states that there are "4 Kbytes of option bytes for user configuration" accessible via the Flash register interface (section 6.3.1), but no further details are provided on how to access that space for user data storage.
I found a question here, which answers this question for another chip (STM32F0): https://community.st.com/s/question/0D50X00009XkfPkSAJ/simple-example-program-to-read-and-write-option-bytes-on-stm32f042k6-using-hal-libraries
My problem is, the STM32L5 HAL code (1.4.0) doesn't define the HAL_FLASHEx_OBGetUserData function, or even the OPTIONBYTE_DATA type.
How is the option byte flash page for user configuration accessed on the L5? Is this actually a supported feature?
Thanks!

