mirror of https://github.com/ARMmbed/mbed-os.git
modify the div value when calling octo controller.
For ST OSPI controller driver(stm32l4xx_hal_ospi.c), the frequency it has be subtracted 1, so "div = div - 1;" should be removed.pull/12937/head
parent
f13ae088d2
commit
de9b283abe
|
|
@ -712,10 +712,6 @@ qspi_status_t qspi_frequency(qspi_t *obj, int hz)
|
||||||
int div = HAL_RCC_GetHCLKFreq() / hz;
|
int div = HAL_RCC_GetHCLKFreq() / hz;
|
||||||
if (div > 255) {
|
if (div > 255) {
|
||||||
div = 255;
|
div = 255;
|
||||||
} else {
|
|
||||||
if ((HAL_RCC_GetHCLKFreq() % hz) == 0) {
|
|
||||||
div = div - 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
obj->handle.Init.ClockPrescaler = div;
|
obj->handle.Init.ClockPrescaler = div;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue