From ea1f18abd6c848fcf7c699204f699682b9c56fbd Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Fri, 14 Jul 2000 20:24:20 +0000 Subject: [PATCH] - Command line termination simplification has made the initialization string function argument in motor_start_trans_com() obsolete. - Removed command line termination character argument from motor_end_trans_com(). Command line termination character processing moved to send_mess(). --- motorApp/OmsSrc/devOms58.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/motorApp/OmsSrc/devOms58.c b/motorApp/OmsSrc/devOms58.c index 5524f819..abccb3f1 100644 --- a/motorApp/OmsSrc/devOms58.c +++ b/motorApp/OmsSrc/devOms58.c @@ -2,9 +2,9 @@ FILENAME... devOms58.c USAGE... Motor record device level support for OMS VME58. -Version: $Revision: 1.1 $ +Version: $Revision: 1.2 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2000-02-08 22:19:01 $ +Last Modified: $Date: 2000-07-14 20:24:20 $ */ /* @@ -114,7 +114,7 @@ STATIC long oms_start_trans(struct motorRecord *mr) struct motor_trans *trans; long rtnval; - rtnval = motor_start_trans_com(mr, oms_cards, ADDRESS); + rtnval = motor_start_trans_com(mr, oms_cards); /* Initialize a STOP_AXIS command termination string pointer. */ trans = (struct motor_trans *) mr->dpvt; trans->motor_call.termstring = " ID"; @@ -129,7 +129,7 @@ STATIC long oms_end_trans(struct motorRecord *mr) return(ERROR); } else - return(motor_end_trans_com(mr, &oms58_access, "\r")); + return(motor_end_trans_com(mr, &oms58_access)); }