1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-21 21:22:31 +03:00

Add circular buffer implementation

This commit is contained in:
Ivan Grokhotkov
2014-12-01 00:36:07 +03:00
parent 160f99c31c
commit 4648024946
2 changed files with 139 additions and 0 deletions

10
cores/esp8266/debug.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef ARD_DEBUG_H
#define ARD_DEBUG_H
#include <stddef.h>
extern "C" size_t ets_printf(const char*, ...);
#define DEBUGV ets_printf
#endif//ARD_DEBUG_H