-
Notifications
You must be signed in to change notification settings - Fork 82
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 #363 from cjjacks/issue-339
[#339] AIT reintegration from cjjacks;
- Loading branch information
Showing
21 changed files
with
80 additions
and
18 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
Submodule sample
updated
5 files
Submodule ds
updated
21 files
+2 −0 | fsw/inc/ds_extern_typedefs.h | |
+2 −0 | fsw/inc/ds_msg.h | |
+3 −4 | fsw/src/ds_app.c | |
+0 −2 | fsw/src/ds_app.h | |
+1 −1 | fsw/src/ds_appdefs.h | |
+28 −28 | fsw/src/ds_cmds.c | |
+1 −1 | fsw/src/ds_dispatch.c | |
+128 −121 | fsw/src/ds_file.c | |
+3 −1 | fsw/src/ds_file.h | |
+29 −31 | fsw/src/ds_table.c | |
+10 −10 | fsw/src/ds_table.h | |
+32 −0 | fsw/tables/ds_file_tbl.c | |
+11 −11 | unit-test/ds_app_tests.c | |
+64 −63 | unit-test/ds_cmds_tests.c | |
+45 −45 | unit-test/ds_dispatch_tests.c | |
+159 −118 | unit-test/ds_file_tests.c | |
+4 −5 | unit-test/ds_table_tests.c | |
+3 −3 | unit-test/stubs/ds_file_stubs.c | |
+30 −30 | unit-test/stubs/ds_table_stubs.c | |
+1 −0 | unit-test/stubs/stub_basetypes.h | |
+2 −2 | unit-test/utilities/ds_test_utils.h |
Submodule hwlib
updated
17 files
+1 −1 | fsw/linux/libcan.c | |
+3 −3 | fsw/linux/libgpio.c | |
+24 −24 | fsw/linux/libi2c.c | |
+4 −0 | fsw/linux/libsocket.c | |
+1 −0 | fsw/linux/libspi.c | |
+15 −12 | fsw/linux/libtrq.c | |
+13 −13 | fsw/linux/libuart.c | |
+0 −2 | fsw/public_inc/hwlib.h | |
+2 −7 | fsw/src/hwlib.c | |
+0 −58 | fsw/stubs/libcan.c | |
+0 −38 | fsw/stubs/libgpio.c | |
+0 −50 | fsw/stubs/libi2c.c | |
+0 −83 | fsw/stubs/libsocket.c | |
+0 −60 | fsw/stubs/libspi.c | |
+0 −116 | fsw/stubs/libtrq.c | |
+0 −42 | fsw/stubs/libtrq_ioctl.h | |
+0 −48 | fsw/stubs/libuart.c |
Submodule osal
updated
5 files
+1 −1 | src/os/nos/inc/NOS-time.h | |
+1 −1 | src/os/nos/src/NOS-time.c | |
+7 −7 | src/os/nos/src/os-impl-tasks.c | |
+2 −2 | src/tests/timer-add-api-test/timer-add-api-test.c | |
+2 −2 | src/tests/timer-test/timer-test.c |
Submodule cosmos
updated
2 files
+0 −2 | config/system/system.txt | |
+0 −2 | config/tools/cmd_tlm_server/cmd_tlm_server.txt |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash -i | ||
# | ||
# Convenience script for NOS3 development | ||
# | ||
|
||
CFG_BUILD_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
SCRIPT_DIR=$CFG_BUILD_DIR/../../scripts | ||
source $SCRIPT_DIR/env.sh | ||
|
||
echo "AIT build..." |
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,12 @@ | ||
#!/bin/bash -i | ||
# | ||
# Convenience script for NOS3 development | ||
# | ||
|
||
CFG_BUILD_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
SCRIPT_DIR=$CFG_BUILD_DIR/../../scripts | ||
source $SCRIPT_DIR/env.sh | ||
export GSW="ait" | ||
|
||
echo "AIT launch..." | ||
gnome-terminal --tab --title="AIT" -- docker run --rm -it -v $BASE_DIR:$BASE_DIR -v /tmp/nos3:/tmp/nos3 --name ait -h ait -p 8001:8001 --network=nos3_core ghcr.io/sphinxdefense/gsw-ait:main "source ~/.bashrc && ait-server" |
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