You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying the new Arduino R4 board which has RA4M1. While dumping clock related registers after restart, I realized HOCOCR2 is 0 (24 MHz) although BSP_CFG_HOCO_FREQUENCY is defined as 4 (48 Mhz). Looking at startup codes, as far as I can see BSP_CFG_HOCO_FREQUENCY is only used if BSP_PRV_HOCO_USE_FLL is set, and this is set only if BSP_FEATURE_CGC_HAS_FLL, BSP_CFG_FLL_ENABLE and BSP_CLOCK_CFG_SUBCLOCK_POPULATED is set. However, BSP_FEATURE_CGC_HAS_FLL is set to 0 in ra4m1/bsp_feature.h, thus, I think, BSP_CFG_HOCO_FREQUENCY has no effect so HOCO frequency is not correctly updated during startup. I think the CLKOUT pin is not exposed in this board, so I cannot verify the actual HOCO frequency. Am I missing something or HOCOCR2 should be set to BSP_CFG_HOCO_FREQUENCY during startup ?
(side not: HOCOCR2 is not defined in R_SYSTEM, #343)
The text was updated successfully, but these errors were encountered:
Can you please provide the version of FSP and/or Arduino library that you are using?
Can you confirm the address that you are checking for HOCOCR2. Please note that the address given in the current Hardware Manual (r01uh0887ej0110) - 0x4001E000 - is NOT correct. The correct address is 0x4001E037, as indicated in the Technical Note adding it originally: https://www.renesas.com/us/en/document/tcu/addition-hococr2-register-hoco-clock-control
Please note that the FLL relationship you were seeing in code is not how FSP configures the HOCO frequency; it is for configuring the FLL functionality. The HOCO frequency is configured via the OFS1 register in ROM and HOCOCR2 will be initialized to match that setting at power on reset. See https://github.com/renesas/fsp/blob/master/ra/fsp/src/bsp/mcu/all/bsp_rom_registers.c#L32
Lastly, please check the hex file contents for your program and provide the value located at 0x0404 - 0x0407. This should be the contents of the OFS1 value.
I am trying the new Arduino R4 board which has RA4M1. While dumping clock related registers after restart, I realized
HOCOCR2
is0 (24 MHz)
althoughBSP_CFG_HOCO_FREQUENCY
is defined as4 (48 Mhz)
. Looking at startup codes, as far as I can seeBSP_CFG_HOCO_FREQUENCY
is only used ifBSP_PRV_HOCO_USE_FLL
is set, and this is set only ifBSP_FEATURE_CGC_HAS_FLL
,BSP_CFG_FLL_ENABLE
andBSP_CLOCK_CFG_SUBCLOCK_POPULATED
is set. However,BSP_FEATURE_CGC_HAS_FLL
is set to 0 inra4m1/bsp_feature.h
, thus, I think,BSP_CFG_HOCO_FREQUENCY
has no effect so HOCO frequency is not correctly updated during startup. I think the CLKOUT pin is not exposed in this board, so I cannot verify the actual HOCO frequency. Am I missing something orHOCOCR2
should be set toBSP_CFG_HOCO_FREQUENCY
during startup ?(side not: HOCOCR2 is not defined in R_SYSTEM, #343)
The text was updated successfully, but these errors were encountered: