Sergey Yurevich.
+++ /dev/null
-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")
-}
+++ /dev/null
-record(sub,"$(user):subExample")
-{
- field(INAM,"mySubInit")
- field(SNAM,"mySubProcess")
-}
+++ /dev/null
-#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);
+++ /dev/null
-variable(mySubDebug)
-function(mySubInit)
-function(mySubProcess)
+++ /dev/null
-/* 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);
+++ /dev/null
-registrar(helloRegister)