mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-06 05:21:22 +03:00
- use new AutoInterruptLock - add delay to give the RTOS some time to handle TCP WiFiClient.cpp - add stopAllexcepted to cancel all TCP excepted one ClientContext.h - add getLocalPort() ESP8266HTTPUpdate.cpp - close all not needed TCP and UDP osapi.h - missing commit from SDK
18 lines
321 B
C
18 lines
321 B
C
#ifndef ARD_DEBUG_H
|
|
#define ARD_DEBUG_H
|
|
|
|
#include <stddef.h>
|
|
//#define DEBUGV(...) ets_printf(__VA_ARGS__)
|
|
|
|
#ifndef DEBUGV
|
|
#define DEBUGV(...)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
void hexdump(uint8_t *mem, uint32_t len, uint8_t cols = 16);
|
|
#else
|
|
void hexdump(uint8_t *mem, uint32_t len, uint8_t cols);
|
|
#endif
|
|
|
|
#endif//ARD_DEBUG_H
|