]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
Those files are not needed.
authorhadaq <hadaq>
Fri, 25 Apr 2008 17:26:27 +0000 (17:26 +0000)
committerhadaq <hadaq>
Fri, 25 Apr 2008 17:26:27 +0000 (17:26 +0000)
Sergey Yurevich.

ebctrl/ioc/ebctrlApp/Db/dbExample2.db [deleted file]
ebctrl/ioc/ebctrlApp/Db/dbSubExample.db [deleted file]
ebctrl/ioc/ebctrlApp/src/dbSubExample.c [deleted file]
ebctrl/ioc/ebctrlApp/src/dbSubExample.dbd [deleted file]
ebctrl/ioc/ebctrlApp/src/ebctrlHello.c [deleted file]
ebctrl/ioc/ebctrlApp/src/ebctrlHello.dbd [deleted file]

diff --git a/ebctrl/ioc/ebctrlApp/Db/dbExample2.db b/ebctrl/ioc/ebctrlApp/Db/dbExample2.db
deleted file mode 100644 (file)
index 836c53d..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-record(calc, "$(user):calcExample$(no)")
-{
-       field(DESC, "Counter No. $(no)")
-       field(SCAN,"$(scan)")
-       field(FLNK, "$(user):aiExample$(no)")
-       field(CALC, "(A<B)?(A+C):D")
-       field(INPA, "$(user):calcExample$(no).VAL NPP NMS")
-       field(INPB, "9")
-       field(INPC, "1")
-       field(INPD, "0")
-       field(EGU, "Counts")
-       field(HOPR, "10")
-       field(HIHI, "8")
-       field(HIGH, "6")
-       field(LOW, "4")
-       field(LOLO, "2")
-       field(HHSV, "MAJOR")
-       field(HSV, "MINOR")
-       field(LSV, "MINOR")
-       field(LLSV, "MAJOR")
-}
-record(ai, "$(user):aiExample$(no)")
-{
-       field(DESC, "Analog input No. $(no)")
-       field(INP, "$(user):calcExample$(no).VAL NPP NMS")
-       field(EGUF, "10")
-       field(EGU, "Counts")
-       field(HOPR, "10")
-       field(LOPR, "0")
-       field(HIHI, "8")
-       field(HIGH, "6")
-       field(LOW, "4")
-       field(LOLO, "2")
-       field(HHSV, "MAJOR")
-       field(HSV, "MINOR")
-       field(LSV, "MINOR")
-       field(LLSV, "MAJOR")
-}
diff --git a/ebctrl/ioc/ebctrlApp/Db/dbSubExample.db b/ebctrl/ioc/ebctrlApp/Db/dbSubExample.db
deleted file mode 100644 (file)
index 96b8638..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-record(sub,"$(user):subExample")
-{
-    field(INAM,"mySubInit")
-    field(SNAM,"mySubProcess")
-}
diff --git a/ebctrl/ioc/ebctrlApp/src/dbSubExample.c b/ebctrl/ioc/ebctrlApp/src/dbSubExample.c
deleted file mode 100644 (file)
index 9a5776d..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#include <stdio.h>
-
-#include <dbDefs.h>
-#include <registryFunction.h>
-#include <subRecord.h>
-#include <epicsExport.h>
-
-int mySubDebug;
-
-typedef long (*processMethod)(subRecord *precord);
-
-static long mySubInit(subRecord *precord,processMethod process)
-{
-    if (mySubDebug)
-        printf("Record %s called mySubInit(%p, %p)\n",
-               precord->name, (void*) precord, (void*) process);
-    return(0);
-}
-
-static long mySubProcess(subRecord *precord)
-{
-    if (mySubDebug)
-        printf("Record %s called mySubProcess(%p)\n",
-               precord->name, (void*) precord);
-    return(0);
-}
-
-/* Register these symbols for use by IOC code: */
-
-epicsExportAddress(int, mySubDebug);
-epicsRegisterFunction(mySubInit);
-epicsRegisterFunction(mySubProcess);
diff --git a/ebctrl/ioc/ebctrlApp/src/dbSubExample.dbd b/ebctrl/ioc/ebctrlApp/src/dbSubExample.dbd
deleted file mode 100644 (file)
index a907fb7..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-variable(mySubDebug)
-function(mySubInit)
-function(mySubProcess)
diff --git a/ebctrl/ioc/ebctrlApp/src/ebctrlHello.c b/ebctrl/ioc/ebctrlApp/src/ebctrlHello.c
deleted file mode 100644 (file)
index 9b4418a..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Example showing how to register a new command with iocsh */
-
-#include <stdio.h>
-
-#include <epicsExport.h>
-#include <iocsh.h>
-
-/* This is the command, which the vxWorks shell will call directly */
-void hello(const char *name) {
-    if (name) {
-       printf("Hello %s, from ebctrl\n", name);
-    } else {
-       puts("Hello from ebctrl");
-    }
-}
-
-/* Information needed by iocsh */
-static const iocshArg     helloArg0 = {"name", iocshArgString};
-static const iocshArg    *helloArgs[] = {&helloArg0};
-static const iocshFuncDef helloFuncDef = {"hello", 1, helloArgs};
-
-/* Wrapper called by iocsh, selects the argument types that hello needs */
-static void helloCallFunc(const iocshArgBuf *args) {
-    hello(args[0].sval);
-}
-
-/* Registration routine, runs at startup */
-static void helloRegister(void) {
-    iocshRegister(&helloFuncDef, helloCallFunc);
-}
-epicsExportRegistrar(helloRegister);
diff --git a/ebctrl/ioc/ebctrlApp/src/ebctrlHello.dbd b/ebctrl/ioc/ebctrlApp/src/ebctrlHello.dbd
deleted file mode 100644 (file)
index 64eb038..0000000
+++ /dev/null
@@ -1 +0,0 @@
-registrar(helloRegister)