Blynk library for embedded hardware. Works with Arduino, ESP8266, Raspberry Pi, Intel Edison/Galileo, LinkIt ONE, Particle Core/Photon, Energia, ARM mbed, etc. http://www.blynk.cc/

Dependents:   Blynk_RBL_BLE_Nano Blynk_MicroBit Blynk_Serial Blynk_RBL_BLE_Nano

Revision:
14:76d8fd871a4d
Parent:
13:ed6276c0afb7
Child:
15:975b60f7a8ff
--- a/Blynk/BlynkDebug.h	Sun Apr 09 14:50:30 2017 +0300
+++ b/Blynk/BlynkDebug.h	Tue Jun 20 00:20:01 2017 +0300
@@ -65,15 +65,13 @@
     #endif
 #endif
 
-#if !defined(ARDUINO) || (ARDUINO < 151)
-    #define BLYNK_NO_YIELD
-#endif
-
 #if !defined(BLYNK_RUN_YIELD)
     #if defined(BLYNK_NO_YIELD)
         #define BLYNK_RUN_YIELD() {}
     #elif defined(SPARK) || defined(PARTICLE)
         #define BLYNK_RUN_YIELD() { Particle.process(); }
+    #elif !defined(ARDUINO) || (ARDUINO < 151)
+        #define BLYNK_RUN_YIELD() {}
     #else
         #define BLYNK_RUN_YIELD() { ::delay(0); }
     #endif