9 lines
129 B
C
9 lines
129 B
C
|
#ifndef __UART_H__
|
||
|
#define __UART_H__
|
||
|
|
||
|
#include "config.h"
|
||
|
|
||
|
void Uart1_Init(void);
|
||
|
void UART_SendByte(unsigned char dat);
|
||
|
|
||
|
#endif
|