├── .gitignore ├── .travis.yml ├── ReleaseNotes.md ├── doc ├── SIL_Simulink_Implementation_Guide.docx ├── SIL_Technical_Overview.pptx ├── TestPlan.xlsx └── readme.md ├── license.md ├── readme.md ├── src ├── +cfsPackage │ ├── @Parameter │ │ └── Parameter.m │ ├── @Signal │ │ └── Signal.m │ ├── @customAttribs │ │ └── customAttribs.m │ ├── @customMsgAttribs │ │ └── customMsgAttribs.m │ ├── csc_registration.m │ └── tlc │ │ ├── cfsCmdMessage.tlc │ │ ├── cfsCriticalDataStorage.tlc │ │ ├── cfsParmTable.tlc │ │ └── cfsTlmMessage.tlc ├── CFS_Target_ReleaseNotes.txt ├── Contents.m ├── cfs_add_path.m ├── cfs_ert.tlc ├── cfs_interface.tlc ├── cfs_interface_utils.tlc ├── cfs_library.slx ├── cfs_rtmodel_rep.m ├── cfs_selectcallback.m ├── mex │ ├── cfs_conditional_msg.c │ ├── cfs_event.c │ ├── cfs_fdc.c │ ├── cfs_gnc_time.c │ └── tlc_c │ │ ├── cfs_conditional_msg.tlc │ │ ├── cfs_event.tlc │ │ ├── cfs_fdc.tlc │ │ └── cfs_gnc_time.tlc ├── readme.md ├── slblocks.m └── util │ ├── compileIfNeeded.m │ ├── compileSilSfcn.m │ ├── createBusFromStruct.m │ ├── createCfsTbl.m │ ├── setupCDSState.m │ └── setupCFSPkt.m └── tests ├── eci_compatibility ├── .gitignore ├── genMakeFile.py ├── genTblMakeFile.py ├── generatedCode.zip ├── model │ ├── .gitignore │ ├── SILTest.slx │ ├── genCode.m │ └── init.m ├── readme.md ├── sil_app_msgids.h ├── sil_app_perfids.h └── testWithECI.sh └── unit ├── +cfetargettester ├── +codeparser │ ├── Buffer.m │ ├── BufferWithParent.m │ ├── CCode.m │ ├── CCodeFileExtractor.m │ ├── CCodeParser.m │ ├── CCodeParserResults.m │ ├── CComments.m │ ├── CExecutableCode.m │ ├── CFile.m │ └── DemarcatedCCode.m ├── +constraints │ └── CombinableConstraint.m ├── +patternsearch │ ├── Contains.m │ ├── ContainsExpression.m │ ├── ContainsNoExpression.m │ ├── ContainsOrderedExpression.m │ ├── ContainsOrderedPatterns.m │ ├── ContainsOrderedStrings.m │ ├── ContainsPatterns.m │ ├── ContainsWithCount.m │ ├── DoesNotContainPatterns.m │ ├── DoesNotContainStrings.m │ ├── Interpretation.m │ ├── RegularExpressionInterpretation.m │ └── StringInterpretation.m ├── CfeTargetTester.m ├── checkBuildDirectory.m └── str2regexp.m ├── CDSBasic.slx ├── CmdMessageSingle.slx ├── CmdTlmMessageMultiple.slx ├── ConditionalAtTop.slx ├── EventAtTop.slx ├── EventBot.slx ├── EventMdlRef.slx ├── FlagAtTop.slx ├── MessageNotRootIONeg.slx ├── MultiRateCont.slx ├── ParmTblWValidation.slx ├── SimpleTunableParmReusable.slx ├── Test_CDSBasic.m ├── Test_CmdMessageSingle.m ├── Test_CmdTlmMessageMultiple.m ├── Test_ConditionalAtTop.m ├── Test_EventAtTop.m ├── Test_EventMdlRef.m ├── Test_FlagAtTop.m ├── Test_MessageNotRootIONeg.m ├── Test_MultiRateCont.m ├── Test_ParmTblWValidation.m ├── Test_SimpleTunableParmReusable.m ├── Test_TimeAtTop.m ├── Test_TlmMessageSingle.m ├── Test_mTestReusable.m ├── TimeAtTop.slx ├── TlmMessageSingle.slx ├── eci_app.h ├── eci_app_stub.c ├── eci_tbl_if.h ├── mTestReusable.slx ├── readme.md ├── tblValFcn.m └── test_data.mat /.gitignore: -------------------------------------------------------------------------------- 1 | slprj/ 2 | *_cfs_ert_rtw 3 | *.mex* 4 | *.slxc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/.travis.yml -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /doc/SIL_Simulink_Implementation_Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/doc/SIL_Simulink_Implementation_Guide.docx -------------------------------------------------------------------------------- /doc/SIL_Technical_Overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/doc/SIL_Technical_Overview.pptx -------------------------------------------------------------------------------- /doc/TestPlan.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/doc/TestPlan.xlsx -------------------------------------------------------------------------------- /doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/doc/readme.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/readme.md -------------------------------------------------------------------------------- /src/+cfsPackage/@Parameter/Parameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/@Parameter/Parameter.m -------------------------------------------------------------------------------- /src/+cfsPackage/@Signal/Signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/@Signal/Signal.m -------------------------------------------------------------------------------- /src/+cfsPackage/@customAttribs/customAttribs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/@customAttribs/customAttribs.m -------------------------------------------------------------------------------- /src/+cfsPackage/@customMsgAttribs/customMsgAttribs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/@customMsgAttribs/customMsgAttribs.m -------------------------------------------------------------------------------- /src/+cfsPackage/csc_registration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/csc_registration.m -------------------------------------------------------------------------------- /src/+cfsPackage/tlc/cfsCmdMessage.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/tlc/cfsCmdMessage.tlc -------------------------------------------------------------------------------- /src/+cfsPackage/tlc/cfsCriticalDataStorage.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/tlc/cfsCriticalDataStorage.tlc -------------------------------------------------------------------------------- /src/+cfsPackage/tlc/cfsParmTable.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/tlc/cfsParmTable.tlc -------------------------------------------------------------------------------- /src/+cfsPackage/tlc/cfsTlmMessage.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/+cfsPackage/tlc/cfsTlmMessage.tlc -------------------------------------------------------------------------------- /src/CFS_Target_ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/CFS_Target_ReleaseNotes.txt -------------------------------------------------------------------------------- /src/Contents.m: -------------------------------------------------------------------------------- 1 | % CFS Code Generation Target 2 | % Version 2.0.4 12-Mar-2018 3 | 4 | -------------------------------------------------------------------------------- /src/cfs_add_path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_add_path.m -------------------------------------------------------------------------------- /src/cfs_ert.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_ert.tlc -------------------------------------------------------------------------------- /src/cfs_interface.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_interface.tlc -------------------------------------------------------------------------------- /src/cfs_interface_utils.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_interface_utils.tlc -------------------------------------------------------------------------------- /src/cfs_library.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_library.slx -------------------------------------------------------------------------------- /src/cfs_rtmodel_rep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_rtmodel_rep.m -------------------------------------------------------------------------------- /src/cfs_selectcallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/cfs_selectcallback.m -------------------------------------------------------------------------------- /src/mex/cfs_conditional_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/cfs_conditional_msg.c -------------------------------------------------------------------------------- /src/mex/cfs_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/cfs_event.c -------------------------------------------------------------------------------- /src/mex/cfs_fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/cfs_fdc.c -------------------------------------------------------------------------------- /src/mex/cfs_gnc_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/cfs_gnc_time.c -------------------------------------------------------------------------------- /src/mex/tlc_c/cfs_conditional_msg.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/tlc_c/cfs_conditional_msg.tlc -------------------------------------------------------------------------------- /src/mex/tlc_c/cfs_event.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/tlc_c/cfs_event.tlc -------------------------------------------------------------------------------- /src/mex/tlc_c/cfs_fdc.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/tlc_c/cfs_fdc.tlc -------------------------------------------------------------------------------- /src/mex/tlc_c/cfs_gnc_time.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/mex/tlc_c/cfs_gnc_time.tlc -------------------------------------------------------------------------------- /src/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/readme.md -------------------------------------------------------------------------------- /src/slblocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/slblocks.m -------------------------------------------------------------------------------- /src/util/compileIfNeeded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/util/compileIfNeeded.m -------------------------------------------------------------------------------- /src/util/compileSilSfcn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/util/compileSilSfcn.m -------------------------------------------------------------------------------- /src/util/createBusFromStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/util/createBusFromStruct.m -------------------------------------------------------------------------------- /src/util/createCfsTbl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/util/createCfsTbl.m -------------------------------------------------------------------------------- /src/util/setupCDSState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/util/setupCDSState.m -------------------------------------------------------------------------------- /src/util/setupCFSPkt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/src/util/setupCFSPkt.m -------------------------------------------------------------------------------- /tests/eci_compatibility/.gitignore: -------------------------------------------------------------------------------- 1 | ECI/* 2 | cFE/* -------------------------------------------------------------------------------- /tests/eci_compatibility/genMakeFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/genMakeFile.py -------------------------------------------------------------------------------- /tests/eci_compatibility/genTblMakeFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/genTblMakeFile.py -------------------------------------------------------------------------------- /tests/eci_compatibility/generatedCode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/generatedCode.zip -------------------------------------------------------------------------------- /tests/eci_compatibility/model/.gitignore: -------------------------------------------------------------------------------- 1 | *.slxc 2 | slprj/* 3 | *.asv 4 | *_cfs_ert_rtw -------------------------------------------------------------------------------- /tests/eci_compatibility/model/SILTest.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/model/SILTest.slx -------------------------------------------------------------------------------- /tests/eci_compatibility/model/genCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/model/genCode.m -------------------------------------------------------------------------------- /tests/eci_compatibility/model/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/model/init.m -------------------------------------------------------------------------------- /tests/eci_compatibility/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/readme.md -------------------------------------------------------------------------------- /tests/eci_compatibility/sil_app_msgids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/sil_app_msgids.h -------------------------------------------------------------------------------- /tests/eci_compatibility/sil_app_perfids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/sil_app_perfids.h -------------------------------------------------------------------------------- /tests/eci_compatibility/testWithECI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/eci_compatibility/testWithECI.sh -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/Buffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/Buffer.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/BufferWithParent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/BufferWithParent.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CCode.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CCodeFileExtractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CCodeFileExtractor.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CCodeParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CCodeParser.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CCodeParserResults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CCodeParserResults.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CComments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CComments.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CExecutableCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CExecutableCode.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/CFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/CFile.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+codeparser/DemarcatedCCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+codeparser/DemarcatedCCode.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+constraints/CombinableConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+constraints/CombinableConstraint.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/Contains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/Contains.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsExpression.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsNoExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsNoExpression.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsOrderedExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsOrderedExpression.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsOrderedPatterns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsOrderedPatterns.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsOrderedStrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsOrderedStrings.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsPatterns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsPatterns.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/ContainsWithCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/ContainsWithCount.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/DoesNotContainPatterns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/DoesNotContainPatterns.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/DoesNotContainStrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/DoesNotContainStrings.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/Interpretation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/Interpretation.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/RegularExpressionInterpretation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/RegularExpressionInterpretation.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/+patternsearch/StringInterpretation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/+patternsearch/StringInterpretation.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/CfeTargetTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/CfeTargetTester.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/checkBuildDirectory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/checkBuildDirectory.m -------------------------------------------------------------------------------- /tests/unit/+cfetargettester/str2regexp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/+cfetargettester/str2regexp.m -------------------------------------------------------------------------------- /tests/unit/CDSBasic.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/CDSBasic.slx -------------------------------------------------------------------------------- /tests/unit/CmdMessageSingle.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/CmdMessageSingle.slx -------------------------------------------------------------------------------- /tests/unit/CmdTlmMessageMultiple.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/CmdTlmMessageMultiple.slx -------------------------------------------------------------------------------- /tests/unit/ConditionalAtTop.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/ConditionalAtTop.slx -------------------------------------------------------------------------------- /tests/unit/EventAtTop.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/EventAtTop.slx -------------------------------------------------------------------------------- /tests/unit/EventBot.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/EventBot.slx -------------------------------------------------------------------------------- /tests/unit/EventMdlRef.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/EventMdlRef.slx -------------------------------------------------------------------------------- /tests/unit/FlagAtTop.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/FlagAtTop.slx -------------------------------------------------------------------------------- /tests/unit/MessageNotRootIONeg.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/MessageNotRootIONeg.slx -------------------------------------------------------------------------------- /tests/unit/MultiRateCont.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/MultiRateCont.slx -------------------------------------------------------------------------------- /tests/unit/ParmTblWValidation.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/ParmTblWValidation.slx -------------------------------------------------------------------------------- /tests/unit/SimpleTunableParmReusable.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/SimpleTunableParmReusable.slx -------------------------------------------------------------------------------- /tests/unit/Test_CDSBasic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_CDSBasic.m -------------------------------------------------------------------------------- /tests/unit/Test_CmdMessageSingle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_CmdMessageSingle.m -------------------------------------------------------------------------------- /tests/unit/Test_CmdTlmMessageMultiple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_CmdTlmMessageMultiple.m -------------------------------------------------------------------------------- /tests/unit/Test_ConditionalAtTop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_ConditionalAtTop.m -------------------------------------------------------------------------------- /tests/unit/Test_EventAtTop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_EventAtTop.m -------------------------------------------------------------------------------- /tests/unit/Test_EventMdlRef.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_EventMdlRef.m -------------------------------------------------------------------------------- /tests/unit/Test_FlagAtTop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_FlagAtTop.m -------------------------------------------------------------------------------- /tests/unit/Test_MessageNotRootIONeg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_MessageNotRootIONeg.m -------------------------------------------------------------------------------- /tests/unit/Test_MultiRateCont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_MultiRateCont.m -------------------------------------------------------------------------------- /tests/unit/Test_ParmTblWValidation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_ParmTblWValidation.m -------------------------------------------------------------------------------- /tests/unit/Test_SimpleTunableParmReusable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_SimpleTunableParmReusable.m -------------------------------------------------------------------------------- /tests/unit/Test_TimeAtTop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_TimeAtTop.m -------------------------------------------------------------------------------- /tests/unit/Test_TlmMessageSingle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_TlmMessageSingle.m -------------------------------------------------------------------------------- /tests/unit/Test_mTestReusable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/Test_mTestReusable.m -------------------------------------------------------------------------------- /tests/unit/TimeAtTop.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/TimeAtTop.slx -------------------------------------------------------------------------------- /tests/unit/TlmMessageSingle.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/TlmMessageSingle.slx -------------------------------------------------------------------------------- /tests/unit/eci_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/eci_app.h -------------------------------------------------------------------------------- /tests/unit/eci_app_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/eci_app_stub.c -------------------------------------------------------------------------------- /tests/unit/eci_tbl_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/eci_tbl_if.h -------------------------------------------------------------------------------- /tests/unit/mTestReusable.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/mTestReusable.slx -------------------------------------------------------------------------------- /tests/unit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/readme.md -------------------------------------------------------------------------------- /tests/unit/tblValFcn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/tblValFcn.m -------------------------------------------------------------------------------- /tests/unit/test_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/SIL/HEAD/tests/unit/test_data.mat --------------------------------------------------------------------------------