Inquiry regarding the RCC_OscInitStruct.HSEState setting.
Hello,
I am using the Nucleo-H767ZI board. On this board, I am working with both a version that uses an external oscillator and one that does not. My question is whether it is normal for the firmware to work regardless of the following settings:
RCC_OscInitStruct.HSEState = RCC_HSE_ON; // Version with external oscillator
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS; // Version without external oscillator
As far as I know, the system should not work if these settings differ depending on whether the external oscillator is present or not. However, in my current situation, the system works regardless of these settings. I've seen cases where it doesn't work, but most of the time it functions without issues, even with different settings.
I would like to know if it is acceptable to use these settings when they differ.
Thank you.
