#ifndef __UART_H__
#define __UART_H__


int uart_init(const char* dev, int speed, int stop, int parity,int bits, int nonblock);
int uart_remote_init(const char * remote_addr, int remote_port);
void uart_uninit(int fd);
int uart_reset_termios(int pfd);

#endif
