Subversion Repositories shark

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef __SHARK_USBSERIAL26_H__
#define __SHARK_USBSERIAL26_H__

struct shark_tty_usbcom {
        void *tty;
        int port_number;
};

int shark_usb_serial_init(void);
void shark_usb_serial_close(void);

int
shark_usbcom_open(struct shark_tty_usbcom *tty_usb, int port_number);

char
shark_usbcom_read(struct shark_tty_usbcom *tty_usb);

#endif