-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cFE Integration candidate: Caelum-rc4+dev33 #2232
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ed4722b
Fix #2174, Move CRC types and convert to enum
thnkslprpt 4f4d492
Fix #2228, Update UTs to use correct cmd types
0f9313d
Fix #2228, Use correct message types
jphickey a3013c9
Fix #2230, EDS Updates to match the current mainline
jphickey 5ad31f1
Merge pull request #2231 from jphickey/fix-2230-eds-update
dzbaker 9b047b8
Merge pull request #2229 from dmknutsen/ISSUE_2228
dzbaker d666214
Merge pull request #2192 from thnkslprpt/fix-2174-move-crc-types-into…
dzbaker bb60c19
Bump to v7.0.0-rc4+dev242
dzbaker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
|
||
GSC-18128-1, "Core Flight Executive Version 6.7" | ||
LEW-19710-1, "CCSDS electronic data sheet implementation" | ||
|
||
Copyright (c) 2006-2019 United States Government as represented by | ||
the Administrator of the National Aeronautics and Space Administration. | ||
All Rights Reserved. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
This document adheres to the Electronic Data Sheet (EDS) XML schema | ||
as prescribed in CCSDS book 876.0. | ||
|
||
Purpose: | ||
This describes all interface objects for the Executive Services (CFE_ES) | ||
core application | ||
|
||
--> | ||
<PackageFile xmlns="http://www.ccsds.org/schema/sois/seds"> | ||
<Package name="CFE_TEST" shortDescription="CFE Functional Test (FT) Application Package"> | ||
|
||
<DataTypeSet> | ||
|
||
<ContainerDataType name="TestTable" shortDescription="Example Table Definition"> | ||
<EntryList> | ||
<Entry name="Int1" type="BASE_TYPES/uint16" shortDescription="Example integer 1" /> | ||
<Entry name="Int2" type="BASE_TYPES/uint16" shortDescription="Example integer 2" /> | ||
</EntryList> | ||
</ContainerDataType> | ||
|
||
<ContainerDataType name="TestCmd" baseType="CFE_HDR/CommandHeader" shortDescription="Test command message"> | ||
<EntryList> | ||
<Entry name="CmdPayload" type="BASE_TYPES/uint64" shortDescription="Example Payload" /> | ||
</EntryList> | ||
</ContainerDataType> | ||
|
||
<ContainerDataType name="TestTlm" baseType="CFE_HDR/TelemetryHeader" shortDescription="Test housekeeping message"> | ||
<EntryList> | ||
<Entry name="TlmPayload" type="BASE_TYPES/uint64" shortDescription="Example Payload" /> | ||
</EntryList> | ||
</ContainerDataType> | ||
|
||
</DataTypeSet> | ||
|
||
<ComponentSet> | ||
<Component name="Application"> | ||
<RequiredInterfaceSet> | ||
<Interface name="CMD" shortDescription="Software bus telecommand interface" type="CFE_SB/Telecommand"> | ||
<GenericTypeMapSet> | ||
<GenericTypeMap name="TelecommandDataType" type="TestCmd" /> | ||
</GenericTypeMapSet> | ||
</Interface> | ||
<Interface name="HK_TLM" shortDescription="Software bus housekeeping telemetry interface" type="CFE_SB/Telemetry"> | ||
<GenericTypeMapSet> | ||
<GenericTypeMap name="TelemetryDataType" type="TestTlm" /> | ||
</GenericTypeMapSet> | ||
</Interface> | ||
</RequiredInterfaceSet> | ||
<Implementation> | ||
<VariableSet> | ||
<Variable type="BASE_TYPES/uint16" readOnly="true" name="CmdTopicId" initialValue="${CFE_MISSION/TEST_CMD_TOPICID}" /> | ||
<Variable type="BASE_TYPES/uint16" readOnly="true" name="TlmTopicId" initialValue="${CFE_MISSION/TEST_HK_TLM_TOPICID}" /> | ||
</VariableSet> | ||
<ParameterMapSet> | ||
<ParameterMap interface="CMD" parameter="TopicId" variableRef="CmdTopicId" /> | ||
<ParameterMap interface="HK_TLM" parameter="TopicId" variableRef="TlmTopicId" /> | ||
</ParameterMapSet> | ||
</Implementation> | ||
</Component> | ||
</ComponentSet> | ||
|
||
</Package> | ||
</PackageFile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / CodeQL-coding-standard
Long function without assertion