Functions | |
int | NutKPrintBinary (CONST char *data, int len) |
Write a buffer to the debug output. | |
int | NutKPrintString (CONST char *str) |
Print a string on the debug output. | |
int | NutKPrintInteger (u_long val, u_char radix, u_char width, u_char flags) |
Print a numeric value on the debug output. | |
int | NutKPrintFormat (CONST char *fmt,...) |
Print parameters using a format string. |
|
Write a buffer to the debug output. The contents of the buffer is immediately sent to the output device. The function will not return unless all characters are sent.
|
|
Print parameters using a format string. This function formats and prints characters and values to a specified character output routine. The format string consists of ordinary characters, escape sequences, and format specifications. Ordinary characters and escape sequences are copied to the output routine in the order of their appearance. The format is scanned from left to right. If a format specification is encountered, the value of the corresponding argument is converted and output according to that format specification. If there are more arguments than format specifications, the extra arguments are ignored. If there are more format specifications than arguments, the results are undefined. Recognized format specifiers are:
|
|
Print a numeric value on the debug output. The numeric value will be converted to an ASCII string and printed to the debug output device. The resulting string is immediately sent to the output device. The function will not return unless all characters are sent.
|
|
Print a string on the debug output. The contents of the string is immediately sent to the output device. The function will not return unless all characters are sent.
|