Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 ESP8266 使用 SMING 框架
ESP8266 Arduino 使用 yield(), delay() 将处理转移到 CPU。当某些过程花费太长时间时,这会减少随机重置。SMING 框架是否有等效的 yield() 和 delay() 函数?
等效于 delay(0) 的 yield 函数用于摆脱 WDT 重置,从而将进程优先级分配给 cpu 时间。因此,由于 SMING 也在 RTOS 上,最好切换到它并忘记它们。