uart.h 304 B

123456789101112
  1. #ifndef __UART_H_
  2. #define __UART_H_
  3. /*===========================================================================
  4. * Function declaration
  5. *===========================================================================*/
  6. void putch(uint8_t);
  7. uint8_t getch();
  8. void uart_init();
  9. #endif //#ifndef __UART_H_