forked from nasa/nos3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[nasa#202] TC commanding and SSP telemetry
- Loading branch information
Showing
13 changed files
with
88 additions
and
41 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
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 |
---|---|---|
|
@@ -84,7 +84,7 @@ list(APPEND MISSION_GLOBAL_APPLIST | |
# | ||
# Libraries | ||
# | ||
#cryptolib | ||
cryptolib | ||
hwlib | ||
io_lib | ||
# | ||
|
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
Submodule cryptolib
updated
71 files
Submodule ci
updated
2 files
+2 −2 | fsw/examples/udp_tf/ci_custom.c | |
+1 −1 | fsw/examples/udp_tf/ci_platform_cfg.h |
Submodule io_lib
updated
6 files
+2 −0 | CMakeLists.txt | |
+1 −0 | fsw/public_inc/io_lib.h | |
+2 −1 | fsw/public_inc/tm_sdlp.h | |
+1 −1 | fsw/public_inc/trans_udp.h | |
+66 −4 | fsw/src/services/tm_sdlp.c | |
+55 −9 | fsw/src/services/trans_udp.c |
Submodule to
updated
9 files
+2 −0 | CMakeLists.txt | |
+6 −0 | fsw/examples/udp/MISSION_to_types.h | |
+9 −0 | fsw/examples/udp/to_custom.c | |
+1 −0 | fsw/examples/udp/to_platform_cfg.h | |
+2 −0 | fsw/examples/udp_tf/MISSION_to_types.h | |
+82 −75 | fsw/examples/udp_tf/to_custom.c | |
+2 −2 | fsw/examples/udp_tf/to_platform_cfg.h | |
+2 −1 | fsw/for_build/Makefile | |
+3 −0 | fsw/src/to_app.c |
Submodule cosmos
updated
4 files
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,31 @@ | ||
#!/bin/bash -i | ||
# | ||
# Convenience script for NOS3 development | ||
# Use with the Dockerfile in the deployment repository | ||
# https://github.com/nasa-itc/deployment | ||
# | ||
|
||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
source $SCRIPT_DIR/env.sh | ||
|
||
# Check that local NOS3 directory exists | ||
if [ ! -d $USER_NOS3_DIR ]; then | ||
echo "" | ||
echo " Need to run make prep first!" | ||
echo "" | ||
exit 1 | ||
fi | ||
|
||
# Check that configure build directory exists | ||
if [ ! -d $BASE_DIR/cfg/build ]; then | ||
echo "" | ||
echo " Need to run make config first!" | ||
echo "" | ||
exit 1 | ||
fi | ||
|
||
# Make ground software build directory | ||
mkdir -p $BASE_DIR/gsw/build | ||
|
||
# Build | ||
$DFLAGS_CPUS -v $BASE_DIR:$BASE_DIR --name "nos_build_cryptolib" -w $BASE_DIR $DBOX make -j$NUM_CPUS build-cryptolib |
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