HAL_RCC_GetSysClockFreq(void) wastes code space with unnecessary (unt64_t) divide.
HAL_RCC_GetSysClockFreq(void) in stm32f7xx_hal_rcc.c uses a (unt64_t) divide which could be avoided. This uses, on my build, 716 bytes of code space alone for the required _udivmoddi4 call, and this is not used anywhere else in my code.Would it be po...