How much user flash space is actually available on STM32H750xB devices?
According to the STM32H7 reference manual (RM0433), there is only a single 128kB sector of user flash space available for STM32H750xB devices (0x08000000 - 0x0801FFFF).
Other devices in the STM32H7 family (H742xI, H743xI, H753xI) have 2 banks of 8 128kB sectors, totaling 2MB of user flash available (0x08000000 - 0x081FFFFFF).
During initial testing with an STM32H750xB device, it was discovered that flash beyond bank 1 sector 0 (0x08000000 - 0x0801FFFF) could be written to and read from, contrary to the indication in the reference manual for this device. Flash sectors starting at 0x08020000 and 0x08060000 could be used.
Seeking an explanation for why flash sectors beyond the stated range seem usable for STM32H750xB devices and if there are any precautions to take when using these sectors.
Has anyone encountered something like this with any of the STM32 MCU families?