├── .VERSION ├── .ci-local └── defaults.set ├── .cvsignore ├── .gitattributes ├── .github └── workflows │ └── ci-scripts-build.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Contributing.md ├── LICENSE ├── LICENSE.LESSER ├── Makefile ├── README.md ├── configure ├── CONFIG ├── CONFIG_SITE ├── Makefile ├── RELEASE └── RULES ├── docs ├── PSI.svg ├── aai.html ├── aao.html ├── ai.html ├── ao.html ├── bi.html ├── bo.html ├── businterface.html ├── calcout.html ├── ex.png ├── exr.png ├── favicon.ico ├── formatconverter.html ├── formats.html ├── index.html ├── int64in.html ├── int64out.html ├── longin.html ├── longout.html ├── lsi.html ├── lso.html ├── makepdf ├── mbbi.html ├── mbbiDirect.html ├── mbbo.html ├── mbboDirect.html ├── nav.html ├── osinterface.html ├── processing.html ├── protocol.html ├── recordinterface.html ├── recordtypes.html ├── scalcout.html ├── setup.html ├── stream.css ├── stringin.html ├── stringout.html ├── tipsandtricks.html └── waveform.html ├── src ├── AsynDriverInterface.cc ├── BCDConverter.cc ├── BinaryConverter.cc ├── CONFIG_STREAM ├── ChecksumConverter.cc ├── DebugInterface.cc ├── DummyInterface.cc ├── EnumConverter.cc ├── MacroMagic.h ├── Makefile ├── MantissaExponentConverter.cc ├── RawConverter.cc ├── RawFloatConverter.cc ├── RegexpConverter.cc ├── StreamBuffer.cc ├── StreamBuffer.h ├── StreamBusInterface.cc ├── StreamBusInterface.h ├── StreamCore.cc ├── StreamCore.h ├── StreamEpics.cc ├── StreamError.cc ├── StreamError.h ├── StreamFormat.h ├── StreamFormatConverter.cc ├── StreamFormatConverter.h ├── StreamProtocol.cc ├── StreamProtocol.h ├── StreamVersion.c ├── TimestampConverter.cc ├── devStream.h ├── devaaiStream.c ├── devaaoStream.c ├── devaiStream.c ├── devaoStream.c ├── devbiStream.c ├── devboStream.c ├── devcalcoutStream.c ├── devint64inStream.c ├── devint64outStream.c ├── devlonginStream.c ├── devlongoutStream.c ├── devlsiStream.c ├── devlsoStream.c ├── devmbbiDirectStream.c ├── devmbbiStream.c ├── devmbboDirectStream.c ├── devmbboStream.c ├── devscalcoutStream.c ├── devstringinStream.c ├── devstringoutStream.c ├── devwaveformStream.c ├── makeStreamVersion.pl ├── makedbd.pl └── makeref.pl └── streamApp ├── .cvsignore ├── .gitignore ├── Makefile ├── base-3-13.dbd ├── base-3-13LIBOBJS ├── checksums.cmd ├── checksums.db ├── checksums.proto ├── example-3-13.cmd ├── example.cmd ├── example.db ├── example.proto ├── regexp.README ├── regexp.cmd ├── regexp.db ├── regexp.proto ├── simple.cmd ├── simple.db ├── simple.proto ├── streamAppMain.cc ├── terminal.tcl ├── test.adl ├── test.cmd ├── test.db ├── test.proto ├── test.readme └── tests ├── printdouble ├── streamtestlib.tcl ├── test64Bit ├── testBo ├── testCharset ├── testChecksum ├── testCompare ├── testDefaultInput ├── testDouble ├── testEnum ├── testFormatm ├── testFormats ├── testHalfInputTerminator ├── testInteger ├── testIoIntrPollTimeout ├── testLongInputTerminator ├── testLongUnsolicitedInput ├── testMultiLineFormatString ├── testOutTerminators ├── testPINI ├── testParallelAccess ├── testParenthesesInParameters ├── testPercent ├── testPerformance ├── testQuotes ├── testRaw ├── testRawFloat ├── testSeverityAndStatus ├── testSkeleton ├── testSpyOnLongInput ├── testStrangesum ├── testStreamBuffer ├── testString ├── testTimestamp ├── testWaage ├── testWaveform └── testall /.VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/.VERSION -------------------------------------------------------------------------------- /.ci-local/defaults.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/.ci-local/defaults.set -------------------------------------------------------------------------------- /.cvsignore: -------------------------------------------------------------------------------- 1 | O.* 2 | *~ 3 | bin 4 | lib 5 | dbd 6 | include 7 | *.pdf 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci-scripts-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/.github/workflows/ci-scripts-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/LICENSE.LESSER -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/README.md -------------------------------------------------------------------------------- /configure/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/configure/CONFIG -------------------------------------------------------------------------------- /configure/CONFIG_SITE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/configure/CONFIG_SITE -------------------------------------------------------------------------------- /configure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/configure/Makefile -------------------------------------------------------------------------------- /configure/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/configure/RELEASE -------------------------------------------------------------------------------- /configure/RULES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/configure/RULES -------------------------------------------------------------------------------- /docs/PSI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/PSI.svg -------------------------------------------------------------------------------- /docs/aai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/aai.html -------------------------------------------------------------------------------- /docs/aao.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/aao.html -------------------------------------------------------------------------------- /docs/ai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/ai.html -------------------------------------------------------------------------------- /docs/ao.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/ao.html -------------------------------------------------------------------------------- /docs/bi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/bi.html -------------------------------------------------------------------------------- /docs/bo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/bo.html -------------------------------------------------------------------------------- /docs/businterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/businterface.html -------------------------------------------------------------------------------- /docs/calcout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/calcout.html -------------------------------------------------------------------------------- /docs/ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/ex.png -------------------------------------------------------------------------------- /docs/exr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/exr.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/formatconverter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/formatconverter.html -------------------------------------------------------------------------------- /docs/formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/formats.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/int64in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/int64in.html -------------------------------------------------------------------------------- /docs/int64out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/int64out.html -------------------------------------------------------------------------------- /docs/longin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/longin.html -------------------------------------------------------------------------------- /docs/longout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/longout.html -------------------------------------------------------------------------------- /docs/lsi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/lsi.html -------------------------------------------------------------------------------- /docs/lso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/lso.html -------------------------------------------------------------------------------- /docs/makepdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/makepdf -------------------------------------------------------------------------------- /docs/mbbi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/mbbi.html -------------------------------------------------------------------------------- /docs/mbbiDirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/mbbiDirect.html -------------------------------------------------------------------------------- /docs/mbbo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/mbbo.html -------------------------------------------------------------------------------- /docs/mbboDirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/mbboDirect.html -------------------------------------------------------------------------------- /docs/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/nav.html -------------------------------------------------------------------------------- /docs/osinterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/osinterface.html -------------------------------------------------------------------------------- /docs/processing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/processing.html -------------------------------------------------------------------------------- /docs/protocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/protocol.html -------------------------------------------------------------------------------- /docs/recordinterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/recordinterface.html -------------------------------------------------------------------------------- /docs/recordtypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/recordtypes.html -------------------------------------------------------------------------------- /docs/scalcout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/scalcout.html -------------------------------------------------------------------------------- /docs/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/setup.html -------------------------------------------------------------------------------- /docs/stream.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/stream.css -------------------------------------------------------------------------------- /docs/stringin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/stringin.html -------------------------------------------------------------------------------- /docs/stringout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/stringout.html -------------------------------------------------------------------------------- /docs/tipsandtricks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/tipsandtricks.html -------------------------------------------------------------------------------- /docs/waveform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/docs/waveform.html -------------------------------------------------------------------------------- /src/AsynDriverInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/AsynDriverInterface.cc -------------------------------------------------------------------------------- /src/BCDConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/BCDConverter.cc -------------------------------------------------------------------------------- /src/BinaryConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/BinaryConverter.cc -------------------------------------------------------------------------------- /src/CONFIG_STREAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/CONFIG_STREAM -------------------------------------------------------------------------------- /src/ChecksumConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/ChecksumConverter.cc -------------------------------------------------------------------------------- /src/DebugInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/DebugInterface.cc -------------------------------------------------------------------------------- /src/DummyInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/DummyInterface.cc -------------------------------------------------------------------------------- /src/EnumConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/EnumConverter.cc -------------------------------------------------------------------------------- /src/MacroMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/MacroMagic.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/MantissaExponentConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/MantissaExponentConverter.cc -------------------------------------------------------------------------------- /src/RawConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/RawConverter.cc -------------------------------------------------------------------------------- /src/RawFloatConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/RawFloatConverter.cc -------------------------------------------------------------------------------- /src/RegexpConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/RegexpConverter.cc -------------------------------------------------------------------------------- /src/StreamBuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamBuffer.cc -------------------------------------------------------------------------------- /src/StreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamBuffer.h -------------------------------------------------------------------------------- /src/StreamBusInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamBusInterface.cc -------------------------------------------------------------------------------- /src/StreamBusInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamBusInterface.h -------------------------------------------------------------------------------- /src/StreamCore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamCore.cc -------------------------------------------------------------------------------- /src/StreamCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamCore.h -------------------------------------------------------------------------------- /src/StreamEpics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamEpics.cc -------------------------------------------------------------------------------- /src/StreamError.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamError.cc -------------------------------------------------------------------------------- /src/StreamError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamError.h -------------------------------------------------------------------------------- /src/StreamFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamFormat.h -------------------------------------------------------------------------------- /src/StreamFormatConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamFormatConverter.cc -------------------------------------------------------------------------------- /src/StreamFormatConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamFormatConverter.h -------------------------------------------------------------------------------- /src/StreamProtocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamProtocol.cc -------------------------------------------------------------------------------- /src/StreamProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamProtocol.h -------------------------------------------------------------------------------- /src/StreamVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/StreamVersion.c -------------------------------------------------------------------------------- /src/TimestampConverter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/TimestampConverter.cc -------------------------------------------------------------------------------- /src/devStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devStream.h -------------------------------------------------------------------------------- /src/devaaiStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devaaiStream.c -------------------------------------------------------------------------------- /src/devaaoStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devaaoStream.c -------------------------------------------------------------------------------- /src/devaiStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devaiStream.c -------------------------------------------------------------------------------- /src/devaoStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devaoStream.c -------------------------------------------------------------------------------- /src/devbiStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devbiStream.c -------------------------------------------------------------------------------- /src/devboStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devboStream.c -------------------------------------------------------------------------------- /src/devcalcoutStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devcalcoutStream.c -------------------------------------------------------------------------------- /src/devint64inStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devint64inStream.c -------------------------------------------------------------------------------- /src/devint64outStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devint64outStream.c -------------------------------------------------------------------------------- /src/devlonginStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devlonginStream.c -------------------------------------------------------------------------------- /src/devlongoutStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devlongoutStream.c -------------------------------------------------------------------------------- /src/devlsiStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devlsiStream.c -------------------------------------------------------------------------------- /src/devlsoStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devlsoStream.c -------------------------------------------------------------------------------- /src/devmbbiDirectStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devmbbiDirectStream.c -------------------------------------------------------------------------------- /src/devmbbiStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devmbbiStream.c -------------------------------------------------------------------------------- /src/devmbboDirectStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devmbboDirectStream.c -------------------------------------------------------------------------------- /src/devmbboStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devmbboStream.c -------------------------------------------------------------------------------- /src/devscalcoutStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devscalcoutStream.c -------------------------------------------------------------------------------- /src/devstringinStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devstringinStream.c -------------------------------------------------------------------------------- /src/devstringoutStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devstringoutStream.c -------------------------------------------------------------------------------- /src/devwaveformStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/devwaveformStream.c -------------------------------------------------------------------------------- /src/makeStreamVersion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/makeStreamVersion.pl -------------------------------------------------------------------------------- /src/makedbd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/makedbd.pl -------------------------------------------------------------------------------- /src/makeref.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/src/makeref.pl -------------------------------------------------------------------------------- /streamApp/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/.cvsignore -------------------------------------------------------------------------------- /streamApp/.gitignore: -------------------------------------------------------------------------------- 1 | streamAppInclude.dbd 2 | -------------------------------------------------------------------------------- /streamApp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/Makefile -------------------------------------------------------------------------------- /streamApp/base-3-13.dbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/base-3-13.dbd -------------------------------------------------------------------------------- /streamApp/base-3-13LIBOBJS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/base-3-13LIBOBJS -------------------------------------------------------------------------------- /streamApp/checksums.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/checksums.cmd -------------------------------------------------------------------------------- /streamApp/checksums.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/checksums.db -------------------------------------------------------------------------------- /streamApp/checksums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/checksums.proto -------------------------------------------------------------------------------- /streamApp/example-3-13.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/example-3-13.cmd -------------------------------------------------------------------------------- /streamApp/example.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/example.cmd -------------------------------------------------------------------------------- /streamApp/example.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/example.db -------------------------------------------------------------------------------- /streamApp/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/example.proto -------------------------------------------------------------------------------- /streamApp/regexp.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/regexp.README -------------------------------------------------------------------------------- /streamApp/regexp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/regexp.cmd -------------------------------------------------------------------------------- /streamApp/regexp.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/regexp.db -------------------------------------------------------------------------------- /streamApp/regexp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/regexp.proto -------------------------------------------------------------------------------- /streamApp/simple.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/simple.cmd -------------------------------------------------------------------------------- /streamApp/simple.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/simple.db -------------------------------------------------------------------------------- /streamApp/simple.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/simple.proto -------------------------------------------------------------------------------- /streamApp/streamAppMain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/streamAppMain.cc -------------------------------------------------------------------------------- /streamApp/terminal.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/terminal.tcl -------------------------------------------------------------------------------- /streamApp/test.adl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/test.adl -------------------------------------------------------------------------------- /streamApp/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/test.cmd -------------------------------------------------------------------------------- /streamApp/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/test.db -------------------------------------------------------------------------------- /streamApp/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/test.proto -------------------------------------------------------------------------------- /streamApp/test.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/test.readme -------------------------------------------------------------------------------- /streamApp/tests/printdouble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/printdouble -------------------------------------------------------------------------------- /streamApp/tests/streamtestlib.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/streamtestlib.tcl -------------------------------------------------------------------------------- /streamApp/tests/test64Bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/test64Bit -------------------------------------------------------------------------------- /streamApp/tests/testBo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testBo -------------------------------------------------------------------------------- /streamApp/tests/testCharset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testCharset -------------------------------------------------------------------------------- /streamApp/tests/testChecksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testChecksum -------------------------------------------------------------------------------- /streamApp/tests/testCompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testCompare -------------------------------------------------------------------------------- /streamApp/tests/testDefaultInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testDefaultInput -------------------------------------------------------------------------------- /streamApp/tests/testDouble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testDouble -------------------------------------------------------------------------------- /streamApp/tests/testEnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testEnum -------------------------------------------------------------------------------- /streamApp/tests/testFormatm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testFormatm -------------------------------------------------------------------------------- /streamApp/tests/testFormats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testFormats -------------------------------------------------------------------------------- /streamApp/tests/testHalfInputTerminator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testHalfInputTerminator -------------------------------------------------------------------------------- /streamApp/tests/testInteger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testInteger -------------------------------------------------------------------------------- /streamApp/tests/testIoIntrPollTimeout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testIoIntrPollTimeout -------------------------------------------------------------------------------- /streamApp/tests/testLongInputTerminator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testLongInputTerminator -------------------------------------------------------------------------------- /streamApp/tests/testLongUnsolicitedInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testLongUnsolicitedInput -------------------------------------------------------------------------------- /streamApp/tests/testMultiLineFormatString: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testMultiLineFormatString -------------------------------------------------------------------------------- /streamApp/tests/testOutTerminators: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testOutTerminators -------------------------------------------------------------------------------- /streamApp/tests/testPINI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testPINI -------------------------------------------------------------------------------- /streamApp/tests/testParallelAccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testParallelAccess -------------------------------------------------------------------------------- /streamApp/tests/testParenthesesInParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testParenthesesInParameters -------------------------------------------------------------------------------- /streamApp/tests/testPercent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testPercent -------------------------------------------------------------------------------- /streamApp/tests/testPerformance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testPerformance -------------------------------------------------------------------------------- /streamApp/tests/testQuotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testQuotes -------------------------------------------------------------------------------- /streamApp/tests/testRaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testRaw -------------------------------------------------------------------------------- /streamApp/tests/testRawFloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testRawFloat -------------------------------------------------------------------------------- /streamApp/tests/testSeverityAndStatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testSeverityAndStatus -------------------------------------------------------------------------------- /streamApp/tests/testSkeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testSkeleton -------------------------------------------------------------------------------- /streamApp/tests/testSpyOnLongInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testSpyOnLongInput -------------------------------------------------------------------------------- /streamApp/tests/testStrangesum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testStrangesum -------------------------------------------------------------------------------- /streamApp/tests/testStreamBuffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testStreamBuffer -------------------------------------------------------------------------------- /streamApp/tests/testString: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testString -------------------------------------------------------------------------------- /streamApp/tests/testTimestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testTimestamp -------------------------------------------------------------------------------- /streamApp/tests/testWaage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testWaage -------------------------------------------------------------------------------- /streamApp/tests/testWaveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testWaveform -------------------------------------------------------------------------------- /streamApp/tests/testall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscherrerinstitute/StreamDevice/HEAD/streamApp/tests/testall --------------------------------------------------------------------------------