Resolved! STM32L031 region `FLASH' overflowed by 5416 bytes when adding -u printf_float flag
Hello. In my project, I would like to printf float type variables such as: float t_degC = -45 + 175 * t_ticks/65535; float rh_pRH = -6 + 125 * rh_ticks/65535; printf("t_degC = %.2f \n",t_degC); printf("rh_pRH = %.2f \n",rh_pRH); Ini...