2
0

console.h 244 B

123456789101112
  1. #ifndef CONSOLE_H
  2. #define CONSOLE_H
  3. #include <stdarg.h>
  4. void con_set_baudrate(uint32_t);
  5. void con_putc(char c);
  6. void con_puts(const char *);
  7. void con_vprintf(const char *, va_list);
  8. void con_printf(const char *, ...);
  9. #endif /* CONSOLE_H */