mirror of
https://github.com/arkhipenko/esp32-mjpeg-multiclient-espcam-drivers.git
synced 2025-01-09 17:41:20 +01:00
11 lines
327 B
C
11 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
|