OEMiROT example flash protect sector problem
hello,
I'm run a STM32H573DK in OEMiROT example.
but following errors occured.
[INF] TAMPER Activated
[INF] BANK 1 secure flash [0, 15] : OB [0, 14]
[ERR] Unexpected value for secure flash protection
so, I find why occurred this error.

In the ob_flash_programming.bat file, sec1_end was set to 0x0E.

but In the code end value is set to 0x0F
end = (S_IMAGE_PRIMARY_PARTITION_OFFSET + FLASH_S_PARTITION_SIZE - 1) / PAGE_SIZE;
( end = 0x1E000 / 0x2000 = 0x0F )
what is correct?
what do i fix?
ps. I'm using STM32Cube_FW_H5_V1.1.1
