You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- /*
- * console.h
- */
-
- #ifndef __CONSOLE_H__
- #define __CONSOLE_H__
-
- void cnsl_init(void);
- void cnsl_run(void);
- void cnsl_handle_input(const char *buf, uint32_t len);
-
- #endif // __CONSOLE_H__
|