mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
12 lines
212 B
C
12 lines
212 B
C
#ifndef ARD_DEBUG_H
|
|
#define ARD_DEBUG_H
|
|
|
|
#include <stddef.h>
|
|
// #define DEBUGV(...) ets_printf(__VA_ARGS__)
|
|
#define DEBUGV(...)
|
|
|
|
void hexdump(uint8_t *mem, uint32_t len, uint8_t cols = 16);
|
|
|
|
|
|
#endif//ARD_DEBUG_H
|