uart.h 190 B

123456789
  1. #ifndef UART_H_INCLUDED
  2. #define UART_H_INCLUDED
  3. #include <stdint.h>
  4. int uart2_setup(uint32_t bitrate, uint8_t data, char parity, uint8_t stop);
  5. void uart2_write(const char *text);
  6. #endif