From beda28873d65bde8c92f7c463602f2b20764c0d9 Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Wed, 7 May 2003 13:42:47 +0000 Subject: [PATCH] Changed serialIORecv() "terminator" argument to a string pointer. --- motorApp/CommSrc/serialIO.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/motorApp/CommSrc/serialIO.h b/motorApp/CommSrc/serialIO.h index 492a3b2b..841fac2d 100644 --- a/motorApp/CommSrc/serialIO.h +++ b/motorApp/CommSrc/serialIO.h @@ -2,9 +2,9 @@ FILENAME... serialIO.h USAGE... . -Version: $Revision: 1.2 $ +Version: $Revision: 1.3 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2003-04-29 14:30:12 $ +Last Modified: $Date: 2003-05-07 13:42:47 $ */ /***************************************************************** @@ -34,7 +34,7 @@ struct serialInfo *serialIOInit(int card, char *task); int serialIOSend(struct serialInfo *serialInfo, char const *buffer, int buffer_len, int timeout); int serialIORecv(struct serialInfo *serialInfo, char *buffer, int buffer_len, - int terminator, int timeout); + char *terminator, int timeout); #ifdef __cplusplus } #endif