From 1ec3f85d18316fea8942f89be4decf1aa715d66a Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Tue, 2 Oct 2001 22:52:27 +0000 Subject: [PATCH] Support one retry after a communication error. --- motorApp/MotorSrc/motordrvCom.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/motorApp/MotorSrc/motordrvCom.h b/motorApp/MotorSrc/motordrvCom.h index 50ba28e6..2f308442 100644 --- a/motorApp/MotorSrc/motordrvCom.h +++ b/motorApp/MotorSrc/motordrvCom.h @@ -4,9 +4,9 @@ FILENAME... motordrvCom.h USAGE... This file contains definitions and structures that are common to all motor record driver support modules. -Version: $Revision: 1.5 $ +Version: $Revision: 1.6 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2000-09-05 22:07:59 $ +Last Modified: $Date: 2001-10-02 22:52:27 $ */ /* @@ -36,6 +36,7 @@ Last Modified: $Date: 2000-09-05 22:07:59 $ * * Modification Log: * ----------------- + * .01 10-02-01 rls added RETRY to CommStatus enumeration. */ @@ -56,6 +57,7 @@ enum PortType enum CommStatus { NORMAL, + RETRY, /* Communication retry. */ COMM_ERR /* Communication timeout error. */ };