mirror of
https://github.com/arkhipenko/esp32-mjpeg-multiclient-espcam-drivers.git
synced 2025-01-09 09:31:20 +01:00
14 lines
408 B
C
14 lines
408 B
C
#pragma once
|
|
// ==== includes =================================
|
|
#include "references.h"
|
|
|
|
#define MILLIS_FUNCTION xTaskGetTickCount()
|
|
// #define MILLIS_FUNCTION millis()
|
|
|
|
// ==== prototypes ===============================
|
|
void setupLogging();
|
|
|
|
#ifndef DISABLE_LOGGING
|
|
void printTimestampMillis(Print* logOutput);
|
|
void printBuffer(const char* aBuf, size_t aSize);
|
|
#endif // #ifndef DISABLE_LOGGING
|