1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-26 07:02:15 +03:00

move hexdump declaration to debug.h

This commit is contained in:
Ivan Grokhotkov
2015-05-14 02:48:30 +03:00
parent ce73ac216b
commit eb37830238
3 changed files with 24 additions and 8 deletions

View File

@ -212,6 +212,7 @@ void loop(void);
#include "HardwareSerial.h"
#include "Esp.h"
#include "debug.h"
uint16_t makeWord(uint16_t w);
uint16_t makeWord(byte h, byte l);
@ -229,8 +230,6 @@ long random(long, long);
void randomSeed(unsigned int);
long map(long, long, long, long, long);
// Debugging functions
void hexdump(uint8_t *mem, uint32_t len, uint8_t cols = 16);
#endif