eid-viewer
eid-viewer library
Loading...
Searching...
No Matches
test
Windowstests
serial_io.h
1
#ifndef SERIAL_IO_H
2
#define SERIAL_IO_H
3
4
#include <stdbool.h>
5
6
typedef
struct
tstserial
Serial
;
7
8
extern
char
* default_card_port;
9
extern
char
* default_usb_port;
10
11
Serial
* serial_open(
char
*portname);
12
void
serial_close(
Serial
*port);
13
char
* serial_read_line(
Serial
*port);
14
void
serial_free_line(
char
*line);
15
bool
serial_writec(
Serial
*port,
char
c);
16
bool
serial_has_data(
Serial
*port);
17
void
serial_clear(
Serial
*port);
18
void
sr_wait(
unsigned
int
millis);
19
20
#endif
tstserial
Definition
serial_linux.c:25
Generated by
1.9.8