stm32 RCC Register ?
While looking at the rcc registers, you can see the ICSCR register on the debug screen, but when I write on the program, I encounter an error, I wonder what is the reason.

While looking at the rcc registers, you can see the ICSCR register on the debug screen, but when I write on the program, I encounter an error, I wonder what is the reason.

Hmm, there still seems to be an incorrect designation in STM32CubeIDE: the register at 0x58024404 is correctly called RCC_HSICFGR according to RM0468, Section 8.7.3. It is also defined as HSICFGR in stm32h723xx.h.
Its bits [30:24] can e.g. be set with an access of this type:
RCC->HSICFGR |= (value << 24) // value: bit30...24, i.e. 0x00...0x7FPlease keep in mind, you should read out the bits beforehand and clear them (e.g. &), then modify the bits read out and write them back using the or (|) mentioned above.
Regards
/Peter
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.