gadget-securevault/uart.h

10 lines
190 B
C
Raw Permalink Normal View History

2019-10-27 07:30:03 +01:00
#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