mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-19 23:22:16 +03:00
disable WiFi DEBUG_WIFI_MULTI
add _min and _max define as workaround
This commit is contained in:
parent
874cf0ef98
commit
1f1497264b
@ -237,6 +237,8 @@ void loop(void);
|
||||
|
||||
#define min(a,b) ((a)<(b)?(a):(b))
|
||||
#define max(a,b) ((a)>(b)?(a):(b))
|
||||
#define _min(a,b) ((a)<(b)?(a):(b))
|
||||
#define _max(a,b) ((a)>(b)?(a):(b))
|
||||
|
||||
uint16_t makeWord(uint16_t w);
|
||||
uint16_t makeWord(byte h, byte l);
|
||||
|
@ -32,7 +32,7 @@
|
||||
#undef max
|
||||
#include <vector>
|
||||
|
||||
#define DEBUG_WIFI_MULTI(...) Serial1.printf( __VA_ARGS__ )
|
||||
//#define DEBUG_WIFI_MULTI(...) Serial1.printf( __VA_ARGS__ )
|
||||
|
||||
#ifndef DEBUG_WIFI_MULTI
|
||||
#define DEBUG_WIFI_MULTI(...)
|
||||
|
Loading…
x
Reference in New Issue
Block a user