Reference manual doesn't show bitfield "SIOO" in OCTOSPI's CCR register
Hello everyone,
I am writing my own "LL" for the OCTOSPI of the STM32H5 Series. (Because it seems there is only the HAL for it)
And I noticed that in the reference manual that the bitfield SIOO in the CCR register is written as "Reserved, must be kept at reset value", but is used by the HAL.

Bellow, taken from "XSPI_ConfigCmd"
/* Configure the CCR register with DQS and SIOO modes */
*ccr_reg = (pCmd->DQSMode | pCmd->SIOOMode);#define XSPI_CCR_SIOO_Pos (31U)
#define XSPI_CCR_SIOO_Msk (0x1UL << XSPI_CCR_SIOO_Pos) /*!< 0x80000000 */
#define XSPI_CCR_SIOO XSPI_CCR_SIOO_Msk /*!< Send Instruction Only Once Mode */Reference manual is RM0481 Rev 3 from March 2025 and the HAL is the V1.5.0 from the 05 February 2025.
Is this a mistake in the RM? Can I use this SIOO bitfield?
Thank you in advance.
