renamed input debug log funcs to imp_ to avoid build collision if DEBUG_WS is enabled also

http-comm
Ondřej Hruška 7 years ago
parent 184c772b57
commit 92a454a2cf
  1. 2
      esphttpdconfig.mk
  2. 2
      libesphttpd
  3. 8
      user/cgi_sockets.c
  4. 12
      user/cgi_sockets.h

@ -51,7 +51,7 @@ GLOBAL_CFLAGS = \
-DDEBUG_CGI=0 \
-DDEBUG_WIFI=0 \
-DDEBUG_WS=0 \
-DDEBUG_ANSI=1 \
-DDEBUG_ANSI=0 \
-DDEBUG_ANSI_NOIMPL=1 \
-DDEBUG_INPUT=0 \
-DDEBUG_HEAP=1 \

@ -1 +1 @@
Subproject commit 3479ab3efcb4581669370cde6a607f936ff5515a
Subproject commit 58c81c0dfe8e15888408886e168ed739aa8f311d

@ -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);

@ -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

Loading…
Cancel
Save