b128e51880
Cannot test the inbuilt ESP32 bluetooth - we blow the FLASH size!
12 lines
295 B
C++
12 lines
295 B
C++
#include <Arduino.h>
|
|
class CProtocol;
|
|
|
|
#if defined(__arm__)
|
|
// Typically Arduino Due
|
|
static UARTClass& DebugPort(Serial);
|
|
#else
|
|
static HardwareSerial& DebugPort(Serial); // reference Serial as DebugPort
|
|
#endif
|
|
|
|
void DebugReportFrame(const char* hdr, const CProtocol& Frame, const char* ftr);
|
|
|