Subversion Repositories shark

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1049 mauro 1
#ifndef __SHARK_USBSERIAL26_H__
2
#define __SHARK_USBSERIAL26_H__
3
 
4
struct shark_tty_usbcom {
5
        void *tty;
6
        int port_number;
7
};
8
 
9
int shark_usb_serial_init(void);
10
void shark_usb_serial_close(void);
11
 
12
int
13
shark_usbcom_open(struct shark_tty_usbcom *tty_usb, int port_number);
14
 
15
char
16
shark_usbcom_read(struct shark_tty_usbcom *tty_usb);
17
 
18
#endif