Skip to content

Commit

Permalink
wrong comment symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
keenanlang committed Apr 14, 2023
1 parent 320aa5d commit fdf5bc3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions opticsApp/src/filterDrive.st
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,11 @@ monitor ENBL;
sync ENBL needRecalc;
/* Define array for the output channels, UNUSED */
#int OUT[MAX_FILTERS];
#assign OUT to {};
/*
**int OUT[MAX_FILTERS];
**assign OUT to {};
*/
/* Define array for the readback of the output channels */
int OUTGET[MAX_FILTERS];
assign OUTGET to {};
Expand Down Expand Up @@ -352,8 +354,10 @@ static double calcTrans(double keV,
pvAssign(SET[i], str);
sprintf(str, "%s%sFi%d:Enable", prefix, record, i+1);
pvAssign(ENBL[i], str);
#sprintf(str, "%s%sFi%d:Set", prefix, record, i+1);
#pvAssign(OUT[i], str);
/*
**sprintf(str, "%s%sFi%d:Set", prefix, record, i+1);
**pvAssign(OUT[i], str);
*/
sprintf(str, "%s%sFi%d:OutGet", prefix, record, i+1);
pvAssign(OUTGET[i], str);
Expand Down

0 comments on commit fdf5bc3

Please sign in to comment.