Changes from tech-talk messages

This commit is contained in:
Marty Kraimer
1998-03-16 16:44:47 +00:00
parent ae6110465b
commit 011804166b
2 changed files with 26 additions and 18 deletions

View File

@@ -17,27 +17,35 @@ The following files are in the release:
README This file
Makefile UAE Makefile
Makefile.LibObjs UAE list of objects
Makefile.Vx UAE vxWorks Makefile
devAiSymb.c Modified versions of standard EPICS
devAoSymb.c vxWorks global variable device support
devAiSymb.c Device support for various record types
devAoSymb.c
devBiSymb.c
devBoSymb.c
devLiSymb.c
devLoSymb.c
devMbbiSymb.c
devMbbiSymbRaw.c
devMbboSymb.c
devMbboSymbRaw.c
devSiSymb.c
devSoSymb.c
devWfSymb.c
devSymbFind.c New module containing parsing code
(includes conditionally compiled test routine)
devSymbTest.c Defines globals and a routine for test
devSup.ascii New INST_IO entries for the above six records
symb.dbd New INST_IO entries for the above record types
symb.db Test database (works with devSymbTest.c)
symb.sr Test database (works with devSymbTest.c)
symbStartup.vws Test vxWorks startup script
08-Jun-96, William Lupton (wlupton@keck.hawaii.edu), CVS tag: symb-1-0
12-Mar-98, William Lupton (wlupton@keck.hawaii.edu), CVS tag: symb-3-0
----------------------------------------------------------------------
first release

View File

@@ -1,16 +1,16 @@
device( "ai" , INST_IO, "devAiSymb" , "vxWorks Variable (INST_IO)" )
device( "ao" , INST_IO, "devAoSymb" , "vxWorks Variable (INST_IO)" )
device( "bi" , INST_IO, "devBiSymb" , "vxWorks Variable (INST_IO)" )
device( "bo" , INST_IO, "devBoSymb" , "vxWorks Variable (INST_IO)" )
device( "longin" , INST_IO, "devLiSymb" , "vxWorks Variable (INST_IO)" )
device( "longout" , INST_IO, "devLoSymb" , "vxWorks Variable (INST_IO)" )
device( "mbbi" , INST_IO, "devMbbiSymb" , "vxWorks Variable (INST_IO)" )
device( "mbbo" , INST_IO, "devMbboSymb" , "vxWorks Variable (INST_IO)" )
device( "stringin" , INST_IO, "devSiSymb" , "vxWorks Variable (INST_IO)" )
device( "stringout", INST_IO, "devSoSymb" , "vxWorks Variable (INST_IO)" )
device( "waveform" , INST_IO, "devWfSymb" , "vxWorks Variable (INST_IO)" )
device( "mbbi" , INST_IO, "devMbbiSymbRaw", "Raw vxWorks Variable (INST_IO)" )
device( "mbbo" , INST_IO, "devMbboSymbRaw", "Raw vxWorks Variable (INST_IO)" )
device("ai",INST_IO,"devAiSymb","vxWorks Variable")
device("ao",INST_IO,"devAoSymb","vxWorks Variable")
device("bi",INST_IO,"devBiSymb","vxWorks Variable")
device("bo",INST_IO,"devBoSymb","vxWorks Variable")
device("longin",INST_IO,"devLiSymb","vxWorks Variable")
device("longout",INST_IO,"devLoSymb","vxWorks Variable")
device("mbbi",INST_IO,"devMbbiSymb","vxWorks Variable")
device("mbbo",INST_IO,"devMbboSymb","vxWorks Variable")
device("stringin",INST_IO,"devSiSymb","vxWorks Variable")
device("stringout",INST_IO,"devSoSymb","vxWorks Variable")
device("waveform",INST_IO,"devWfSymb","vxWorks Variable")
device("mbbi",INST_IO,"devMbbiSymbRaw","RawvxWorks Variable")
device("mbbo",INST_IO,"devMbboSymbRaw","RawvxWorks Variable")
#for compatibility with old
device(ai,CONSTANT,devAiSymb,"vxWorks Variable")