a156062a94
Report data frames within BT functions. Improved command decode reporting
12 lines
275 B
C++
12 lines
275 B
C++
|
|
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);
|
|
|