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 フレームワークを使用しています
yield()、delay() は、ESP8266 Arduino で処理を CPU に移すために使用されます。これにより、特定のプロセスに時間がかかりすぎる場合のランダム リセットが減少します。SMING フレームワークには、yield() と delay() に相当する関数がありますか?
delay(0) と同等の yield 関数は、WDT リセットを取り除き、プロセスの優先順位を CPU 時間に与えるために使用されます。SMINGもRTOS上にあるので、それに切り替えて、それらのことはすべて忘れてください.