TCXO Not Supported by SUBGHz_PHY Middleware in STM32CubeMX for STM32WL5MOCHTR
TCXO is not supported in the SUBGHz_PHY code generated by STM32CubeMX for the STM32WL5MOCHTR.
Even with the HSE enabled in the RCC panel, this dialogue box is still shown.
According to the datasheet, the internal clock labeled "HSE" is a TCXO, and must be configured as such.
Even with the fix applied to the clocks within SystemClock_Config, the system fails to generate valid code.
void SystemClock_Config(void)
{
...
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS_PWR;
...
}So there is an issue with the internal model within STM32CubeMX (as of 3/13/2025).
When Code is Debugged, the code always gets stuck in the function "HAL_SYSCFG_EnableVREFBUF."
Where should we go from here?
