| 123456789101112131415161718192021 |
- #ifndef __LIB_KERNEL_PRINT_H
- #define __LIB_KERNEL_PRINT_H
- #include "stdint.h"
- /**
- * @brief 打印字符
- * @note 打印 ascii characters
- * @param char_ascii: ascii string
- * @retval None
- */
- void put_char(uint8_t char_ascii);
- /**
- * @brief 打印字符串
- * @note 调用 put_char 打印字符串
- * @param *message: 字符串地址
- * @retval None
- */
- void put_str(char *message);
- #endif // __LIB_KERNEL_PRINT_H
|