Skip to content

Commit 3519e62

Browse files
committed
Finish renaming of components
1 parent ec2a1ce commit 3519e62

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/as/save/
55
.vscode/
66
records.dbl
7-
/iocBoot/COSCON_IS/envPaths
7+
/iocBoot/iocCOSCON_IS/envPaths
88
/config
99
*.swo
1010
*.swp

COSCON_ISApp/src/COSCON_IS_Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* matsusada_R4KMain.cpp */
1+
/* COSCON_ISMain.cpp */
22
/* Author: Marty Kraimer Date: 17MAR2000 */
33

44
#include <stddef.h>

COSCON_ISApp/src/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ include $(TOP)/configure/CONFIG
99
# Build the IOC application
1010

1111
PROD_IOC = COSCON_IS
12-
# matsusada_R4K.dbd will be created and installed
12+
# COSCON_IS.dbd will be created and installed
1313
DBD += COSCON_IS.dbd
1414

15-
# matsusada_R4K.dbd will be made up from these files:
15+
# COSCON_IS.dbd will be made up from these files:
1616
COSCON_IS_DBD += base.dbd
1717

1818
COSCON_IS_DBD += calc.dbd
@@ -34,7 +34,7 @@ COSCON_IS_DBD += status.dbd
3434
# Add all the support libraries needed by this IOC
3535
#COSCON_IS_LIBS += xxx
3636

37-
# COSCON_IS_registerRecordDeviceDriver.cpp derives from matsusada_R4K.dbd
37+
# COSCON_IS_registerRecordDeviceDriver.cpp derives from COSCON_IS.dbd
3838
COSCON_IS_SRCS += COSCON_IS_registerRecordDeviceDriver.cpp
3939
COSCON_IS_SRCS += status.c
4040

@@ -44,7 +44,7 @@ COSCON_IS_SRCS_vxWorks += -nil-
4444

4545

4646
# Add support from base/src/vxWorks if needed
47-
#matsusada_R4K_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
47+
#COSCON_IS_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
4848

4949
# Finally link to the EPICS Base libraries
5050
COSCON_IS_LIBS += $(EPICS_BASE_IOC_LIBS)

COSCON_ISApp/src/status.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ static long aSub_COSCON_IS_STS_Proc(aSubRecord* pasub)
7777

7878
/* Register these symbols for use by IOC code: */
7979
epicsExportAddress(int, subDebug);
80-
epicsRegisterFunction(aSub_R4K_80_STS_Init);
81-
epicsRegisterFunction(aSub_R4K_80_STS_Proc);
80+
epicsRegisterFunction(aSub_COSCON_IS_STS_Init);
81+
epicsRegisterFunction(aSub_COSCON_IS_STS_Proc);
8282

8383

8484
// static long aSubMKSPrReadInit(aSubRecord* pasub)
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
#!../../bin/linux-x86_64/matsusada_R4K
1+
#!../../bin/linux-x86_64/COSCON_IS
22

33
<xf31id1-lab3-ioc1-netsetup.cmd
44

55
epicsEnvSet("ENGINEER", "C. Engineer")
66
epicsEnvSet("LOCATION", "LAB3")
77

8-
epicsEnvSet("IOCNAME", "r4k")
8+
epicsEnvSet("IOCNAME", "coscon_is")
99
epicsEnvSet("SYS", "XF:31ID1-BI")
10-
epicsEnvSet("DEV", "{PW:1}")
10+
epicsEnvSet("DEV", "{PW:2}")
1111
epicsEnvSet("IOC_SYS", "XF:31ID1-CT")
1212
epicsEnvSet("IOC_DEV", "{IOC:$(IOCNAME)}")
13-
epicsEnvSet("MODEL", "R4K_80")
13+
epicsEnvSet("MODEL", "COSCON_IS")
1414
epicsEnvSet("CHAN", 0)
1515

16-
epicsEnvSet("PORT","matsu-px")
17-
epicsEnvSet("HOST","10.69.57.80:10001")
16+
epicsEnvSet("PORT","coscon-is")
17+
epicsEnvSet("HOST","10.69.59.99:2005")
1818

1919
epicsEnvSet("IOC_PREFIX", "$(IOC_SYS)$(IOC_DEV)")
2020

@@ -23,8 +23,8 @@ epicsEnvSet("IOC_PREFIX", "$(IOC_SYS)$(IOC_DEV)")
2323
cd "${TOP}"
2424

2525
## Register all support components
26-
dbLoadDatabase("dbd/matsusada_R4K.dbd")
27-
matsusada_R4K_registerRecordDeviceDriver pdbbase
26+
dbLoadDatabase("dbd/COSCON_IS.dbd")
27+
COSCON_IS_registerRecordDeviceDriver pdbbase
2828

2929
## Streamdevice Protocol Path
3030
epicsEnvSet ("STREAM_PROTOCOL_PATH", "${TOP}/protocols")

st.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
cd iocBoot/iocmatsusada_R4K && ./st.cmd
3+
cd iocBoot/iocCOSCON_IS && ./st.cmd

0 commit comments

Comments
 (0)