STM32H503 MCO1 pin from PLL1Q generates no output; other sources work correctly
I saw at least one person elsewhere mention this (but got no answers).
On the STM32H503 (LQFP48 pin package)...
This configuration:
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSE, RCC_MCODIV_5);
Produces no output on the MCO1 pin
but changing it to this:
HAL_RCC_MCOConfig(RCC_MCO1, RCC_MCO1SOURCE_HSI48, RCC_MCODIV_1);
generates an output (albeit, not terribly accurate, which is expected from that source).
In fact, I tried every other source setting and they all work except PLL1Q.
PLL1 is configured as:
HSE=24Mhz crystal
M= /12, N=x250, Q = /2, and MCO divider = /5 So output should be 50MHz
I confirmed that the HAL is setting the register correctly (RCC_CFGR -> MCO1SEL == 0x011) via SWD.
I see nothing in the Errata on this---is there a silicon bug here?
