usart.h 467 B

1234567891011121314151617181920212223
  1. /*
  2. * File : usart.h
  3. * This file is part of RT-Thread RTOS
  4. *
  5. * The license and distribution terms for this file may be
  6. * found in the file LICENSE in this distribution or at
  7. * http://www.rt-thread.org/license/LICENSE
  8. *
  9. * Change Logs:
  10. * Date Author Notes
  11. * 2017-12-12 Bluebear233 first implementation
  12. */
  13. #ifndef __USART_H__
  14. #define __USART_H__
  15. /**
  16. * 硬件串口注册
  17. */
  18. void rt_hw_usart_init(void);
  19. #endif /* __USART_H__ */