123456789101112 |
- #ifndef CONSOLE_H
- #define CONSOLE_H
- #include <stdarg.h>
- void con_set_baudrate(uint32_t);
- void con_putc(char c);
- void con_puts(const char *);
- void con_vprintf(const char *, va_list);
- void con_printf(const char *, ...);
- #endif /* CONSOLE_H */
|