Keyboard firmwares for Atmel AVR and Cortex-M
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  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