gadget-tester/uart.h
2019-11-22 11:12:54 +01:00

9 lines
190 B
C

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