aboutsummaryrefslogtreecommitdiff
path: root/example-fs-bb48/tty.h
blob: bd0f0708a24a619b6b091210f135c050c1523240 (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, uint8_t *buf, int count);
int tty_recv (struct tty *tty, uint8_t *buf, uint32_t *timeout);