System thread

SYSTEM_THREAD(ENABLED), SYSTEM_THREAD

Since 0.4.6:

The System Thread is a system configuration that helps ensure the application loop is not interrupted by the system background processing and network management. It does this by running the application loop and the system loop on separate threads, so they execute in parallel rather than sequentially.

While you must opt into using system thread, its use is recommended for all applications.

// EXAMPLE USAGE
SYSTEM_THREAD(ENABLED);