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.

11 lines
201 B

  1. #ifndef _uart_included_h_
  2. #define _uart_included_h_
  3. #include <stdint.h>
  4. void uart_init(uint32_t baud);
  5. void uart_putchar(uint8_t c);
  6. uint8_t uart_getchar(void);
  7. uint8_t uart_available(void);
  8. #endif