mirror of
https://github.com/arkhipenko/esp32-mjpeg-multiclient-espcam-drivers.git
synced 2025-01-10 01:51:18 +01:00
12 lines
327 B
C
12 lines
327 B
C
|
#pragma once
|
||
|
// ==== includes =================================
|
||
|
#include "references.h"
|
||
|
|
||
|
// ==== prototypes ===============================
|
||
|
void setupLogging();
|
||
|
|
||
|
#ifndef DISABLE_LOGGING
|
||
|
void printTimestampMillis(Print* logOutput);
|
||
|
void printBuffer(const char* aBuf, size_t aSize);
|
||
|
#endif // #ifndef DISABLE_LOGGING
|