aboutsummaryrefslogtreecommitdiff
path: root/example-cdc-gnu-linux/tty.h
blob: 77e7f463c08d0c788c080c5f91313cd7a38e000c (plain)
1
2
3
4
5
6
7
8
9
#define LINEBUFSIZE 128

struct tty;

struct tty *tty_open (void);
void tty_wait_configured (struct tty *tty);
void tty_wait_connection (struct tty *tty);
int tty_send (struct tty *tty, const char *buf, int count);
int tty_recv (struct tty *tty, char *buf, uint32_t *timeout);