songzhe2001

Results 3 issues of songzhe2001

I want to translate it into simplified Chinese but I don't know how to edit the code. If you guys want to release a Chinese version, I'd like to help...

enhancement

STM32L476 波特率:921600 循环发送延时1ms 数据量约2KB/s 此时绘图窗流畅度大幅下降。 函数如下; while (1) { printf("%d\n",(uint16_t)TempValue); HAL_Delay(1); } 循环发送不延时 数据量约10KB/s 此时绘图窗需手动刷新。

STM32L476 波特率:921600 循环发送延时1ms 数据量约2KB/s 此时数据会变成乱码。 函数如下; while (1) { printf("/*%d\n*/",(uint16_t)TempValue); HAL_Delay(1); }

bug