myUart3.h 203 B

123456789101112
  1. #ifndef __myUart3_H
  2. #define __myUart3_H
  3. #include "myUart.h"
  4. #include <stdint.h>
  5. void myUart3_init(uint32_t baudrate, UART_CALLBACK cb);
  6. void myUart3_printf(uint16_t sendLen, char *fmt, ...);
  7. #endif