Skip to content
Ken Sharp edited this page Dec 8, 2023 · 1 revision

DebugPrint()

Print debug data if debugging is enabled.

Syntax

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);

Returns

void

Related Links

Clone this wiki locally