-
Notifications
You must be signed in to change notification settings - Fork 114
debugprint
Ken Sharp edited this page Dec 8, 2023
·
1 revision
Print debug data if debugging is enabled.
DebugPrint(char c);
c
Debug string.
Note: DebugPrint() includes the following overloads in LINXDevice.cpp which are built on top of the above function.
void DebugPrint(const char s[]);
void DebugPrint(unsigned char c);
void DebugPrint(int n);
void DebugPrint(unsigned int n);
void DebugPrint(long n);
void DebugPrint(unsigned long n);
void DebugPrint(long n, int base);
void DebugPrintln();
void DebugPrintln(char c);
void DebugPrintln(const char s[]);
void DebugPrintln(unsigned char c);
void DebugPrintln(int n);
void DebugPrintln(long n);
void DebugPrintln(unsigned long n);
void DebugPrintln(long n, int base);
void