Optimization for the speed of the printf function.
Hi.Faced the problem of prinyf () function execution speed.Wrote a simple speed testHAL_GPIO_TogglePin (GPIOE, GPIO_PIN_8);uint8_t text [256] = {0};for (uint32_t i = 0; i <256; i ++){sprintf (text, "% - 5.2f", (i + 10.0 / 2.0));}HAL_GPIO_TogglePin (G...