aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/microblaze/lib/hal_io.h
diff options
context:
space:
mode:
authorNick Foster <nick@nerdnetworks.org>2010-08-13 12:09:28 -0700
committerNick Foster <nick@nerdnetworks.org>2010-08-13 12:09:28 -0700
commit6bde8e29eb28b746109531553d38fec91a89dc73 (patch)
tree6139aa459f519d6ffebdee858c8c8162be1526be /firmware/microblaze/lib/hal_io.h
parentf09d9820ed40371f552d3a910bc2d8170d290653 (diff)
downloaduhd-6bde8e29eb28b746109531553d38fec91a89dc73.tar.gz
uhd-6bde8e29eb28b746109531553d38fec91a89dc73.tar.bz2
uhd-6bde8e29eb28b746109531553d38fec91a89dc73.zip
Added timeout functionality for UART gets() calls. use fngets_timeout(). timeout defined in hal_uart.h.
Diffstat (limited to 'firmware/microblaze/lib/hal_io.h')
-rw-r--r--firmware/microblaze/lib/hal_io.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/microblaze/lib/hal_io.h b/firmware/microblaze/lib/hal_io.h
index 45e23755f..950f8d591 100644
--- a/firmware/microblaze/lib/hal_io.h
+++ b/firmware/microblaze/lib/hal_io.h
@@ -28,6 +28,7 @@ char *gets(char * const s);
int fputstr(hal_uart_name_t u, const char *s);
int fnputstr(hal_uart_name_t u, const char *s, int len);
int fngets(hal_uart_name_t u, char * const s, int len);
+int fngets_timeout(hal_uart_name_t u, char * const s, int len);
/*
* ------------------------------------------------------------------------