summaryrefslogtreecommitdiffstats
path: root/arduino-serial-lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'arduino-serial-lib.h')
-rw-r--r--arduino-serial-lib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arduino-serial-lib.h b/arduino-serial-lib.h
index a0731e1..aa43eb7 100644
--- a/arduino-serial-lib.h
+++ b/arduino-serial-lib.h
@@ -8,13 +8,14 @@
#ifndef __ARDUINO_SERIAL_LIB_H__
#define __ARDUINO_SERIAL_LIB_H__
-#include <stdint.h> // Standard types
+#include <stdint.h> // Standard types
int serialport_init(const char* serialport, int baud);
int serialport_close(int fd);
int serialport_writebyte( int fd, uint8_t b);
int serialport_write(int fd, const char* str);
int serialport_read_until(int fd, char* buf, char until, int buf_max,int timeout);
+int serialport_read_unlimited(int fd, char* buf, char until, int buf_max);
int serialport_flush(int fd);
#endif