File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 48
48
// Define actual debug output functions when necessary.
49
49
#ifdef WS_DEBUG
50
50
#define WS_DEBUG_PRINT (...) \
51
- { WS_PRINTER.print (__VA_ARGS__); } // /< Prints debug output.
51
+ { WS_PRINTER.print (__VA_ARGS__); WS_PRINTER. flush (); } // /< Prints debug output.
52
52
#define WS_DEBUG_PRINTLN (...) \
53
- { WS_PRINTER.println (__VA_ARGS__); } // /< Prints line from debug output.
53
+ { WS_PRINTER.println (__VA_ARGS__); WS_PRINTER. flush (); } // /< Prints line from debug output.
54
54
#define WS_DEBUG_PRINTHEX (...) \
55
- { WS_PRINTER.print (__VA_ARGS__, HEX); } // /< Prints debug output.
55
+ { WS_PRINTER.print (__VA_ARGS__, HEX); WS_PRINTER. flush (); } // /< Prints debug output.
56
56
#else
57
57
#define WS_DEBUG_PRINT (...) \
58
58
{} // /< Prints debug output
Original file line number Diff line number Diff line change 19
19
20
20
#ifdef ARDUINO_ARCH_ESP32
21
21
#include " Wippersnapper.h"
22
+ #include " Wippersnapper_Networking.h"
22
23
23
24
#include " Adafruit_MQTT.h"
24
25
#include " Adafruit_MQTT_Client.h"
You can’t perform that action at this time.
0 commit comments