2019-05-03 02:24 AM
Hi!
I am about to code my CLK enable tree, without CUBEMX. - I just took CUBEMX as referene.
CUBEMX generates me a line called __HAL_RCC_SYSCFG_CLK_ENABLE().
Unfortunately i could not find any clock called SYSCFG in the clock tree (CubeMX nor DM31020).
It seems that i only need it when i use ETH, memory remao, ext. or ext. interrupt.
So my questions are:
regards,
Walter
2019-05-03 03:29 AM
Enabling this clock is needed so that the SYSCFG module can be used
etc.
JW
2019-05-03 03:38 AM
Thats excatly the information that i found, but nothing more. - Thanks anyway. Hoped to see a block diagram or something similar.
2019-05-03 05:04 AM
Well, there's nothing more to it. SYSCFG is just a collection of registers to control a few things, that did not fit elsewhere. And access to these registers is controlled by the clock enable bit in RCC.
JW