renamed input debug log funcs to imp_ to avoid build collision if DEBUG_WS is enabled also
This commit is contained in:
+4
-4
@@ -235,7 +235,7 @@ void ICACHE_FLASH_ATTR updateSockRx(Websock *ws, char *data, int len, int flags)
|
||||
// Add terminator if missing (seems to randomly happen)
|
||||
data[len] = 0;
|
||||
|
||||
ws_dbg("Sock RX str: %s, len %d", data, len);
|
||||
inp_dbg("Sock RX str: %s, len %d", data, len);
|
||||
|
||||
int y, x, m, b;
|
||||
u8 btnNum;
|
||||
@@ -271,7 +271,7 @@ void ICACHE_FLASH_ATTR updateSockRx(Websock *ws, char *data, int len, int flags)
|
||||
|
||||
case 'i':
|
||||
// requests initial load
|
||||
ws_dbg("Client requests initial load");
|
||||
inp_dbg("Client requests initial load");
|
||||
notifyContentTimCb(ws);
|
||||
break;
|
||||
|
||||
@@ -290,7 +290,7 @@ void ICACHE_FLASH_ATTR updateSockRx(Websock *ws, char *data, int len, int flags)
|
||||
break;
|
||||
|
||||
default:
|
||||
ws_warn("Bad command.");
|
||||
inp_warn("Bad command.");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -307,7 +307,7 @@ void ICACHE_FLASH_ATTR heartbeatTimCb(void *unused)
|
||||
/** Socket connected for updates */
|
||||
void ICACHE_FLASH_ATTR updateSockConnect(Websock *ws)
|
||||
{
|
||||
ws_info("Socket connected to "URL_WS_UPDATE);
|
||||
inp_info("Socket connected to "URL_WS_UPDATE);
|
||||
ws->recvCb = updateSockRx;
|
||||
|
||||
TIMER_START(&heartbeatTim, heartbeatTimCb, HB_TIME, 1);
|
||||
|
||||
+6
-6
@@ -17,13 +17,13 @@ void notify_growl(char *msg);
|
||||
|
||||
// defined in the makefile
|
||||
#if DEBUG_INPUT
|
||||
#define ws_warn warn
|
||||
#define ws_dbg dbg
|
||||
#define ws_info info
|
||||
#define inp_warn warn
|
||||
#define inp_dbg dbg
|
||||
#define inp_info info
|
||||
#else
|
||||
#define ws_warn(...)
|
||||
#define ws_dbg(...)
|
||||
#define ws_info(...)
|
||||
#define inp_warn(...)
|
||||
#define inp_dbg(...)
|
||||
#define inp_info(...)
|
||||
#endif
|
||||
|
||||
#endif //CGI_SOCKETS_H
|
||||
|
||||
Reference in New Issue
Block a user