From 00e1608501a0eb270df80a31f0dd0b327b202059 Mon Sep 17 00:00:00 2001 From: Stefan Tauner Date: Mon, 1 Apr 2013 00:45:38 +0000 Subject: Replace sp_sync_read_timeout() with serialport_read_nonblock() It seems useful to have a generic and platform-independent method to read and write to a serial port without blocking. This is the read part. It stores the current blocking properties before disabling blocking and restores them after reading. The timeout is implemented as previously by retrying every millisecond until the timeout is reached or enough characters are available. Corresponding to flashrom svn r1661. Signed-off-by: Stefan Tauner Acked-by: Stefan Tauner --- programmer.h | 1 + 1 file changed, 1 insertion(+) (limited to 'programmer.h') diff --git a/programmer.h b/programmer.h index b10f568..c36b452 100644 --- a/programmer.h +++ b/programmer.h @@ -661,6 +661,7 @@ extern fdtype sp_fd; int serialport_shutdown(void *data); int serialport_write(unsigned char *buf, unsigned int writecnt); int serialport_read(unsigned char *buf, unsigned int readcnt); +int serialport_read_nonblock(unsigned char *c, unsigned int readcnt, unsigned int timeout, unsigned int *really_read); /* Serial port/pin mapping: -- cgit v1.1