Solved
HSE clock configuration for nucleo STM32F429zi board at 80MHz
&clk_lsi {
status = "okay";
};
&clk_hse {
hse-bypass;
clock-frequency = <DT_FREQ_M(8)>; /* STLink 8MHz clock */
status = "okay";
};
&pll {
div-m = <15>;
mul-n = <96>;
div-p = <2>;
div-q = <4>;
clocks = <&clk_hse>;
status = "okay";
};
&rcc {
clocks = <&pll>;
clock-frequency = <DT_FREQ_M(80)>; /* highest value to get a precise USB clock */
ahb-prescaler = <1>;
apb1-prescaler = <2>;
apb2-prescaler = <1>;
};
But the above configuration is not working can you please provide any idea on this.
But the above configuration is not working can you please provide any idea on this.
