Skip to content
The Core Flight System (cFS)
CMake
Branch: master
Clone or download
Latest commit df9606d Jan 27, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Update pull template to reflect cFS bundle use Jan 13, 2020
apps Update to latest masters Jan 27, 2020
cfe @ 3356da6 Update to latest masters Jan 27, 2020
osal @ 8239eb5 Update to latest masters Jan 27, 2020
psp @ 91e209d Update to latest masters Jan 27, 2020
tools Update to latest masters Jan 27, 2020
.clang-format Fix #37, Add style configuration Jan 14, 2020
.gitignore Add gitignore Sep 4, 2019
.gitmodules Fix #12, Remove gen_msgids submodule Sep 16, 2019
.lgtm.yml Fix #32, Add lgtm configuration Dec 30, 2019
.travis.yml
README.md Update to latest masters and README Jan 17, 2020

README.md

Build Status LGTM Alerts LGTM Grade LGTM Grade

Core Flight System - BUNDLE

This repository is a bundle of submodules that make up the Core Flight System (cFS) framework. Note the "lab" apps are intended as examples only, and enable this bundle to build, execute, receive commands, and send telemetry. This is not a flight distribution, which is typically made up of the cFE, OSAL, PSP, and a selection of flight apps that coorespond to specific mission requirements.

This bundle has not been fully verified as an operational system, and is provided as a starting point vs an end product. Testing of this bundle consists of building, executing, sending setup commands and verifying receipt of telemetry. Unit testing is also run, but extensive analysis is not performed. All verification and validation per mission requirements is the responsibility of the mission (although attempts are made in the cFS Framework to provide a testing framework to facilitate the process).

The cFS Framework is a core subset of cFS. There are additional OSALs, PSPs, and tools as listed below available from a variety of sources.

Release Notes

cFS 6.7.0 Suite: NOT FULLY RELEASED

  • cFE 6.7.0 is released under the Apache 2.0 license, see LICENSE.
    • The license covers cFE, PSP, framework apps, and framework tools as marked
  • OSAL 5.0.0 is pending release
  • Release documentation pending

cFS 6.6.0a Suite: OFFICIAL RELEASE:

Other elements listed below are released under a varitey of licenses as detailed in their respective repositories.

Known issues

Historical version description documents contain references to internal repositories and sourceforge, which is no longer in use. Not all markdown documents have been updated for GitHub.

See related repositories for current open issues.

Major future work

  • Certification framework including PSP and OSAL white box testing
  • Open source automated build verification framework
  • Unit test modernization/standardization
  • Deployment quality of life improvements (configuration)
  • Documentation (updated tracability, APIs/ICDs, general update)
  • Symmetric multi-processing APIs
  • Electronic Data Sheet integration
  • Toolchain updates

Getting Help

For best results, submit issues:questions or issues:help wanted requests to this repo.

Official cFS page: http://cfs.gsfc.nasa.gov

Community email list subscription request: https://lists.nasa.gov/mailman/listinfo/cfs-community

Setup

To setup the cFS BUNDLE directly from the latest set of interoperable repositories:

git clone https://github.com/nasa/cFS.git
cd cFS
git submodule init
git submodule update

Copy in the default makefile and definitions:

cp cfe/cmake/Makefile.sample Makefile
cp -r cfe/cmake/sample_defs sample_defs

If running on a standard linux build as a normal user, define OSAL_DEBUG_PERMISSIVE_MODE for best effort message queue depth and task priorities.

sed -i 's/undef OSAL_DEBUG_PERMISSIVE_MODE/define OSAL_DEBUG_PERMISSIVE_MODE/g' sample_defs/default_osconfig.h

Build and Run

The cFS Framework including sample applications will build and run on the pc-linux platform support package (should run on most Linux distributions), via the steps described in https://github.com/nasa/cFE/tree/master/cmake/README.md. Quick-start is below:

To prep, compile, and run (from cFS directory above):

make prep
make
make install
cd build/exe/cpu1/
./core-cpu1

Should see startup messages, and CFE_ES_Main entering OPERATIONAL state. Note the code must be executed from the build/exe/cpu1 directory to find the startup script and shared objects.

Send commands, receive telemetry

The cFS-GroundSystem tool can be used to send commands and receive telemetry (see https://github.com/nasa/cFS-GroundSystem/tree/master/Guide-GroundSystem.txt, the Guide-GroundSystem.txt). Note it depends on PyQt4 and PyZMQ:

  1. Install PyQt4 and PyZMQ on your system

  2. Compile cmdUtil and start the ground system executable

    cd tools/cFS-GroundSystem/Subsystems/cmdUtil
    make
    cd ../..
    python GroundSystem.py
    
  3. Select "Start Command System"

  4. Select "Enable Tlm"

  5. Enter IP address of system executing cFS, 127.0.0.1 if running locally

Should see telemetry, can send noops and see command counters increment

Compatible list of cFS apps

The following applications have been tested against this release:

  • TBD

Other cFS related elements/tools/apps/distributions

The following list is user submitted, and not CCB controlled. They are released by various orgainizations, under various licenses.

You can’t perform that action at this time.