-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from nasa/integration-candidate
cFS-GroundSystem Integration candidate: 2021-03-23
- Loading branch information
Showing
13 changed files
with
73 additions
and
44 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Contributing Guide | ||
|
||
Please see our [top-level contributing guide](https://github.com/nasa/cFS/blob/main/CONTRIBUTING.md) for more information on how to contribute. |
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
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# | ||
Command Counter, 16, 1, B, Dec, NULL, NULL, NULL, NULL | ||
Error Counter, 17, 1, B, Dec, NULL, NULL, NULL, NULL | ||
NoSubscribersCounter, 18, 1, B, Dec, NULL, NULL, NULL, NULL | ||
MsgSendErrorCounter, 19, 1, B, Dec, NULL, NULL, NULL, NULL | ||
MsgReceiveErrorCounter, 20, 1, B, Dec, NULL, NULL, NULL, NULL | ||
InternalErrorCounter, 21, 1, B, Dec, NULL, NULL, NULL, NULL | ||
CreatePipeErrorCounter, 22, 1, B, Dec, NULL, NULL, NULL, NULL | ||
SubscribeErrorCounter, 23, 1, B, Dec, NULL, NULL, NULL, NULL | ||
PipeOptsErrorCounter, 24, 1, B, Dec, NULL, NULL, NULL, NULL | ||
DuplicateSubscriptionsCounter, 25, 1, B, Dec, NULL, NULL, NULL, NULL | ||
Spare2Align, 26, 2, H, Dec, NULL, NULL, NULL, NULL | ||
PipeOverflowErrorCounter, 28, 2, H, Dec, NULL, NULL, NULL, NULL | ||
MsgLimitErrorCounter, 30, 2, H, Dec, NULL, NULL, NULL, NULL | ||
MemPoolHandle, 32, 4, I, Dec, NULL, NULL, NULL, NULL | ||
MemInUse, 36, 4, I, Dec, NULL, NULL, NULL, NULL | ||
UnmarkedMem, 40, 4, I, Dec, NULL, NULL, NULL, NULL | ||
Command Counter, 12, 1, B, Dec, NULL, NULL, NULL, NULL | ||
Error Counter, 13, 1, B, Dec, NULL, NULL, NULL, NULL | ||
NoSubscribersCounter, 14, 1, B, Dec, NULL, NULL, NULL, NULL | ||
MsgSendErrorCounter, 15, 1, B, Dec, NULL, NULL, NULL, NULL | ||
MsgReceiveErrorCounter, 16, 1, B, Dec, NULL, NULL, NULL, NULL | ||
InternalErrorCounter, 17, 1, B, Dec, NULL, NULL, NULL, NULL | ||
CreatePipeErrorCounter, 18, 1, B, Dec, NULL, NULL, NULL, NULL | ||
SubscribeErrorCounter, 19, 1, B, Dec, NULL, NULL, NULL, NULL | ||
PipeOptsErrorCounter, 20, 1, B, Dec, NULL, NULL, NULL, NULL | ||
DuplicateSubscriptionsCounter, 21, 1, B, Dec, NULL, NULL, NULL, NULL | ||
Spare2Align, 22, 2, H, Dec, NULL, NULL, NULL, NULL | ||
PipeOverflowErrorCounter, 24, 2, H, Dec, NULL, NULL, NULL, NULL | ||
MsgLimitErrorCounter, 36, 2, H, Dec, NULL, NULL, NULL, NULL | ||
MemPoolHandle, 28, 4, I, Dec, NULL, NULL, NULL, NULL | ||
MemInUse, 32, 4, I, Dec, NULL, NULL, NULL, NULL | ||
UnmarkedMem, 36, 4, I, Dec, NULL, NULL, NULL, NULL |
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 @@ | ||
setuptools |
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,13 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name='GroundSystem', | ||
packages=['Subsystems','Subsystems.tlmGUI','Subsystems.cmdGui','Subsystems.cmdUtil'], | ||
include_package_data=True, | ||
version='0.0.0', | ||
entry_points={ | ||
'console_scripts':[ | ||
'startg=GroundSystem:main' | ||
] | ||
}, | ||
) |