暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

console.h 189B

123456789101112
  1. /*
  2. * console.h
  3. */
  4. #ifndef __CONSOLE_H__
  5. #define __CONSOLE_H__
  6. void cnsl_init(void);
  7. void cnsl_run(void);
  8. void cnsl_handle_input(const char *buf, uint32_t len);
  9. #endif // __CONSOLE_H__