diff --git a/motorApp/ImsSrc/devIM483PL.c b/motorApp/ImsSrc/devIM483PL.c index a73dc83c..3349dbb1 100644 --- a/motorApp/ImsSrc/devIM483PL.c +++ b/motorApp/ImsSrc/devIM483PL.c @@ -3,9 +3,9 @@ FILENAME... devIM483PL.c USAGE... Motor record device level support for Intelligent Motion Systems, Inc. IM483(I/IE). -Version: $Revision: 1.1 $ +Version: $Revision: 1.2 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2000-07-25 13:36:34 $ +Last Modified: $Date: 2001-04-21 18:15:42 $ */ /* @@ -92,6 +92,7 @@ struct motor_dset devIM483PL = /* --------------------------- program data --------------------- */ /* This table is used to define the command types */ +/* WARNING! this must match "motor_cmnd" in motor.h */ static int IM483PL_table[] = { MOTION, /* MOVE_ABS */ @@ -114,7 +115,8 @@ static int IM483PL_table[] = { IMMEDIATE, /* DISABL_TORQUE */ IMMEDIATE, /* PRIMITIVE */ IMMEDIATE, /* SET_HIGH_LIMIT */ - IMMEDIATE /* SET_LOW_LIMIT */ + IMMEDIATE, /* SET_LOW_LIMIT */ + VELOCITY /* JOG_VELOCITY */ }; diff --git a/motorApp/ImsSrc/devIM483SM.c b/motorApp/ImsSrc/devIM483SM.c index af4ad071..a2a877fd 100644 --- a/motorApp/ImsSrc/devIM483SM.c +++ b/motorApp/ImsSrc/devIM483SM.c @@ -3,9 +3,9 @@ FILENAME... devIM483SM.c USAGE... Motor record device level support for Intelligent Motion Systems, Inc. IM483(I/IE). -Version: $Revision: 1.1 $ +Version: $Revision: 1.2 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2000-07-25 13:36:35 $ +Last Modified: $Date: 2001-04-21 18:15:43 $ */ /* @@ -92,6 +92,7 @@ struct motor_dset devIM483SM = /* --------------------------- program data --------------------- */ /* This table is used to define the command types */ +/* WARNING! this must match "motor_cmnd" in motor.h */ static int IM483SM_table[] = { MOTION, /* MOVE_ABS */ @@ -114,7 +115,8 @@ static int IM483SM_table[] = { IMMEDIATE, /* DISABL_TORQUE */ IMMEDIATE, /* PRIMITIVE */ IMMEDIATE, /* SET_HIGH_LIMIT */ - IMMEDIATE /* SET_LOW_LIMIT */ + IMMEDIATE, /* SET_LOW_LIMIT */ + VELOCITY /* JOG_VELOCITY */ };