在 Arduino ESP8266 中添加过多的 yield() 有什么影响?

What is the effect of adding too many yield() in Arduino ESP8266?

添加 yield() 将减少 ESP8266 中的随机重置。如果代码有太多 yield() 怎么办?有什么副作用?

基本上 yield 命令只是让 esp 有机会处理内部的东西。这比使用 waits - delay() 要好得多,而且我找不到明显的性能影响。