diff options
Diffstat (limited to 'dev/DDKit/KernelPrint.h')
| -rw-r--r-- | dev/DDKit/KernelPrint.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev/DDKit/KernelPrint.h b/dev/DDKit/KernelPrint.h new file mode 100644 index 00000000..49021377 --- /dev/null +++ b/dev/DDKit/KernelPrint.h @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + + Purpose: DDK Text I/O. + +------------------------------------------- */ + +#pragma once + +#include <DDKit/KernelString.h> + +/// @brief print character into UART. +DK_EXTERN void kernelPrintChar(const char ch); + +/// @brief print string to UART. +/// @param message string to transmit to UART. +DK_EXTERN void kernelPrintStr(const char* message); |
