Skip to content

Commit

Permalink
Merge pull request #178 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
cFS-Ground System Integration candidate: 2021-04-20
  • Loading branch information
astrogeco authored Apr 22, 2021
2 parents b4bd979 + 583994e commit 5deb0f0
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
9 changes: 9 additions & 0 deletions Guide-GroundSystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ Installing and running cFS Ground System on Ubuntu:

The historically included instructions for running on macOS or CentOS are included at the bottom of this document for reference. Please note that instructions have not been maintained. Welcoming instruction contributions if any of these are your platform of choice.

### Install Ground System executable
This works for both macOS and Ubuntu systems.
```
The requirements.txt file is located directly inside the cFS-GroundSystem/
$ pip3 install -r requirements.txt
$ pip3 install -e relative/path/to/cFS-GroundSystem
$ cFS-GroundSystem
```
## Adding new flight software application to ground system command GUI

This section was made to help developers who are adding core Flight Software (cFS) Applications to the Python-based Ground System that comes with this cFS distribution.
Expand Down Expand Up @@ -157,3 +165,4 @@ $ yum install -y qt qt-demos qt-designer qt4 qt4-designer
```
$ python GroundSystem.py
```

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ See [Guide-GroundSystem.md](https://github.com/nasa/cFS-GroundSystem/blob/master

## Version History

### Development Build: v2.2.0-rc1+dev45

- Changes executable command from 'startg' to 'cFS-GroundSystem'
- Changes version to be the version stated in version.py
- Adds executable installation instructions to Guide-GroundSystem.md
- See <https://github.com/nasa/cFS-GroundSystem/pull/178> and <https://github.com/nasa/cFS/pull/248>

### Development Build: v2.2.0-rc1+dev41

- Corrects values in sb and tbl hk-tlm.txt to allow the TBL and SB tlm pages to open.
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from setuptools import setup
from _version import __version__ as _version

setup(
name='GroundSystem',
name='cFS-GroundSystem',
packages=['Subsystems','Subsystems.tlmGUI','Subsystems.cmdGui','Subsystems.cmdUtil'],
include_package_data=True,
version='0.0.0',
version=_version,
entry_points={
'console_scripts':[
'startg=GroundSystem:main'
'cFS-GroundSystem=GroundSystem:main'
]
},
)

0 comments on commit 5deb0f0

Please sign in to comment.