Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Copy link
Member

@kmpeters kmpeters May 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change this:

iocsh/

To this:

/iocsh/

So that only the top-level, autogenerated iocsh dir is ignored.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ O.*
bin/
/db/
dbd/
/iocsh/
html/
include/
lib/
Expand All @@ -16,3 +17,4 @@ auto_settings.sav*
auto_positions.sav*
*.local
makelog.txt
.loglogin
2 changes: 0 additions & 2 deletions .loglogin

This file was deleted.

12 changes: 7 additions & 5 deletions configure/RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@
#
# Add your declarations here



# SUPPORT=/home/oxygen/MOONEY/epics/synAppsSVN/support
SUPPORT=/APSshare/epics/synApps_6_1/support-v7
SUPPORT=/APSshare/epics/synApps_6_2_1/support

ASYN=$(SUPPORT)/asyn-R4-36
IPAC=$(SUPPORT)/ipac-2-15
SNCSEQ=$(SUPPORT)/seq-2-2-6
ASYN=$(SUPPORT)/asyn-R4-42
IPAC=$(SUPPORT)/ipac-2-16
SNCSEQ=$(SUPPORT)/seq-2-2-9

EPICS_BASE=/APSshare/epics/base-7.0.3
EPICS_BASE=/APSshare/epics/base-7.0.4.1

# These lines allow developers to override these RELEASE settings
# without having to modify this file directly.
Expand Down
97 changes: 97 additions & 0 deletions ipApp/Db/KeyenceCL3000.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
Terminator = CR;

emission_ctrl {
out "LC,%i";
in "LC";
@mismatch {in "%(\$1:errorString)s";}
}

setMode {
out "%s";
in "%(\$1:mode_RBV)s";
@mismatch {in "%(\$1:errorString)s";}
}

autoZero {
out "ZS,%i,\$1";
in "ZS";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

setOffset {
out "SW,OF,\$1,%+08.4f";
in "SW,OF";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

setOffsetStr {
out "SW,OF,\$1,%s";
in "SW,OF";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

getOffset {
out "SR,OF,\$1";
in "SR,OF,\$1,%f";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

setScaling {
out "SW,SC,\$1,+00.0000,+00.0000,+01.0000,%+08.4f";
in "SW,SC";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

setScalingStr {
out "SW,SC,\$1,%s";
in "SW,SC";
@mismatch {in "%(\$2:\$1:errorString)s";}
}


getScaling {
out "SR,SC,\$1";
in "SR,SC,\$1,%*f,%*f,%*f,%f";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

# Measurement value get request options.
# 0: Measurement value only
# 1: Measurement value + Measurement result information
# 2: Measurement value + Judgment result
# 3: Measurement value + Measurement result information + Judgment result
# 4: Count value + Measurement value
# 5: Count value + Measurement value + Measurement result information
# 6: Count value + Measurement value + Judgment result
# 7: Count value + Measurement value + Measurement result information + Judgment result


getMeas {
out "MS,%(\$2:\$1:measType)i,\$1";
in "MS,%(\$2:\$1:measString)s";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

# generic send/receive a command. Note that it requires the first two chars of
# the send string to be the length, so external formatting is required.
sendCmd {
out "%s";
in "%(\$2:\$1:replyString)s";
}

# Unused/not fully tested or troubleshot


startAuto {
out "NS,%(\$2:\$1:measType),\$1";
in "NS";
@mismatch {in "%(\$2:\$1:errorString)s";}
}

stopAuto {
out "NT";
in "NT";
@mismatch {in "%(\$2:\$1:errorString)s";}
}


Loading
Loading