We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STM32L476 波特率:921600 循环发送延时1ms 数据量约2KB/s 此时绘图窗流畅度大幅下降。 函数如下; while (1) { printf("%d\n",(uint16_t)TempValue); HAL_Delay(1); } 循环发送不延时 数据量约10KB/s 此时绘图窗需手动刷新。
The text was updated successfully, but these errors were encountered:
测下来确实绘图过程会卡顿,但是数据点是不会丢的
Sorry, something went wrong.
No branches or pull requests
STM32L476 波特率:921600
循环发送延时1ms 数据量约2KB/s 此时绘图窗流畅度大幅下降。
函数如下;
while (1)
{
printf("%d\n",(uint16_t)TempValue);
HAL_Delay(1);
}
循环发送不延时 数据量约10KB/s 此时绘图窗需手动刷新。
The text was updated successfully, but these errors were encountered: