9 lines
139 B
C
9 lines
139 B
C
#ifndef _UART_CONFIGURATION_
|
|
#define _UART_CONFIGURATION_
|
|
|
|
#include "stdint.h"
|
|
|
|
void uart_init();
|
|
void uart_transmit(uint8_t data);
|
|
|
|
#endif |