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