Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/cs
2 changes: 1 addition & 1 deletion apps/hk
2 changes: 1 addition & 1 deletion apps/hs
2 changes: 1 addition & 1 deletion apps/lc
2 changes: 1 addition & 1 deletion apps/md
2 changes: 1 addition & 1 deletion apps/sample_app
2 changes: 1 addition & 1 deletion apps/sch_lab
2 changes: 1 addition & 1 deletion cfe
Submodule cfe updated 88 files
+50 −0 .github/PULL_REQUEST_TEMPLATE/comment_documentation_change.md
+88 −0 .github/PULL_REQUEST_TEMPLATE/fsw_code_change.md
+50 −0 .github/PULL_REQUEST_TEMPLATE/workflows_change.md
+1 −1 .github/workflows/code-coverage-eds.yml
+1 −1 .github/workflows/code-coverage.yml
+1 −1 cmake/generate_git_module_version.cmake
+1 −0 cmake/sample_defs/cfe_perfids.h
+3 −0 cmake/sample_defs/eds/cfe-topicids.xml
+31 −0 cmake/sample_defs/example_platform_cfg.h
+4 −0 cmake/sample_defs/targets.cmake
+20 −0 cmake/target/CMakeLists.txt
+2 −0 cmake/target/inc/target_config.h
+12 −1 cmake/target/src/target_config.c
+462 −301 docs/cFE_FunctionalRequirements.csv
+246 −0 docs/src/cfe_ta.dox
+21 −0 docs/src/mnem_maps/cfe_ta_cmd_mnem_map
+24 −0 docs/src/mnem_maps/cfe_ta_tlm_mnem_map
+4 −1 modules/cfe_assert/src/cfe_assert_io.c
+3 −3 modules/cfe_testcase/src/es_cds_test.c
+33 −31 modules/cfe_testcase/src/es_info_test.c
+2 −2 modules/cfe_testcase/src/es_resource_id_test.c
+1 −1 modules/cfe_testcase/src/es_task_test.c
+4 −1 modules/cfe_testcase/src/fs_header_test.c
+5 −5 modules/cfe_testcase/src/fs_util_test.c
+3 −1 modules/cfe_testcase/src/sb_pipe_mang_test.c
+34 −0 modules/cfe_testcase/src/sb_sendrecv_test.c
+5 −0 modules/config/fsw/src/cfe_config_get.c
+3 −0 modules/config/fsw/src/cfe_config_init.c
+1 −0 modules/config/tool/config_ids_dynamic.cmake
+1 −0 modules/config/ut-coverage/test_cfe_config.c
+80 −0 modules/core_api/fsw/inc/cfe_sb.h
+7 −0 modules/core_api/fsw/inc/cfe_sb_api_typedefs.h
+2 −2 modules/core_api/fsw/inc/cfe_version.h
+50 −0 modules/core_api/ut-stubs/src/cfe_sb_stubs.c
+1 −1 modules/es/fsw/src/cfe_es_cds.c
+11 −1 modules/fs/config/default_cfe_fs_filedef.h
+9 −0 modules/fs/eds/cfe_fs.xml
+2 −0 modules/msg/fsw/src/cfe_msg_ccsdspri.c
+96 −7 modules/sb/fsw/src/cfe_sb_api.c
+2 −2 modules/sb/fsw/src/cfe_sb_priv.c
+122 −0 modules/sb/ut-coverage/sb_UT.c
+15 −0 modules/sb/ut-coverage/sb_UT.h
+53 −0 modules/ta/CMakeLists.txt
+19 −0 modules/ta/arch_build.cmake
+47 −0 modules/ta/config/default_cfe_ta_fcncode_values.h
+38 −0 modules/ta/config/default_cfe_ta_interface_cfg_values.h
+38 −0 modules/ta/config/default_cfe_ta_internal_cfg_values.h
+36 −0 modules/ta/config/default_cfe_ta_mission_cfg.h
+38 −0 modules/ta/config/default_cfe_ta_msg.h
+80 −0 modules/ta/config/default_cfe_ta_msgdefs.h
+32 −0 modules/ta/config/default_cfe_ta_msgid_values.h
+51 −0 modules/ta/config/default_cfe_ta_msgids.h
+79 −0 modules/ta/config/default_cfe_ta_msgstruct.h
+59 −0 modules/ta/config/default_cfe_ta_platform_cfg.h
+28 −0 modules/ta/config/default_cfe_ta_topicid_values.h
+39 −0 modules/ta/config/eds_cfe_ta_fcncode_values.h
+39 −0 modules/ta/config/eds_cfe_ta_interface_cfg_values.h
+32 −0 modules/ta/config/eds_cfe_ta_msgdefs.h
+31 −0 modules/ta/config/eds_cfe_ta_msgstruct.h
+30 −0 modules/ta/config/eds_cfe_ta_topicid_values.h
+246 −0 modules/ta/docs/cfe_ta.dox
+330 −0 modules/ta/eds/cfe_ta.xml
+153 −0 modules/ta/examples/sample_cfe_ta_cpuaffinity.c
+269 −0 modules/ta/fsw/inc/cfe_ta_eventids.h
+225 −0 modules/ta/fsw/inc/cfe_ta_fcncodes.h
+40 −0 modules/ta/fsw/inc/cfe_ta_interface_cfg.h
+69 −0 modules/ta/fsw/inc/cfe_ta_internal_cfg.h
+76 −0 modules/ta/fsw/inc/cfe_ta_tasklist.h
+55 −0 modules/ta/fsw/inc/cfe_ta_topicids.h
+159 −0 modules/ta/fsw/src/cfe_ta_dispatch.c
+43 −0 modules/ta/fsw/src/cfe_ta_dispatch.h
+106 −0 modules/ta/fsw/src/cfe_ta_eds_dispatch.c
+56 −0 modules/ta/fsw/src/cfe_ta_module_all.h
+38 −0 modules/ta/fsw/src/cfe_ta_objtab.c
+854 −0 modules/ta/fsw/src/cfe_ta_task.c
+201 −0 modules/ta/fsw/src/cfe_ta_task.h
+22 −0 modules/ta/mission_build.cmake
+30 −0 modules/ta/ut-coverage/CMakeLists.txt
+842 −0 modules/ta/ut-coverage/ta_UT.c
+110 −0 modules/ta/ut-coverage/ta_UT.h
+854 −0 modules/ta/ut-coverage/ta_UT_task.c
+20 −0 modules/ta/ut-coverage/ta_ut_default_dispatch.c
+23 −0 modules/ta/ut-coverage/ta_ut_eds_dispatch.c
+46 −0 modules/ta/ut-coverage/ta_ut_helpers.c
+30 −0 modules/ta/ut-coverage/ta_ut_helpers.h
+2 −2 modules/tbl/fsw/src/cfe_tbl_dump.c
+7 −2 modules/time/fsw/src/cfe_time_api.c
+6 −2 modules/time/ut-coverage/time_UT.c
2 changes: 1 addition & 1 deletion libs/sample_lib
2 changes: 1 addition & 1 deletion osal
2 changes: 1 addition & 1 deletion tools/cFS-GroundSystem
2 changes: 1 addition & 1 deletion tools/cfs-cosmos-plugin
Submodule cfs-cosmos-plugin updated 36 files
+73 −0 Makefile
+38 −1 README.md
+25 −0 cfs_app_cosmos_overrides.mk
+19 −0 cfs_app_cosmos_tests.mk
+72 −0 lib/cfs_test_connection.py
+106 −0 lib/cosmos_adapter.py
+8 −4 targets/CFS/cmd_tlm/cfe_ta_cmd_def.txt
+15 −19 targets/CFS/cmd_tlm/cfe_ta_tlm_def.txt
+30 −21 targets/CFS/lib/ta_file_tlm_load.rb
+36 −0 targets/CFS/procedures/cfe_es_test_suite.py
+36 −0 targets/CFS/procedures/cfe_evs_test_suite.py
+36 −0 targets/CFS/procedures/cfe_sb_test_suite.py
+36 −0 targets/CFS/procedures/cfe_tbl_test_suite.py
+44 −0 targets/CFS/procedures/cfe_test_suite.py
+36 −0 targets/CFS/procedures/cfe_time_test_suite.py
+36 −0 targets/CFS/procedures/cfs_cf_test_suite.py
+36 −0 targets/CFS/procedures/cfs_cs_test_suite.py
+38 −0 targets/CFS/procedures/cfs_demo_apps_test_suite.py
+36 −0 targets/CFS/procedures/cfs_ds_test_suite.py
+36 −0 targets/CFS/procedures/cfs_fm_test_suite.py
+36 −0 targets/CFS/procedures/cfs_hk_test_suite.py
+36 −0 targets/CFS/procedures/cfs_hs_test_suite.py
+36 −0 targets/CFS/procedures/cfs_md_test_suite.py
+36 −0 targets/CFS/procedures/cfs_mm_test_suite.py
+36 −0 targets/CFS/procedures/cfs_sample_app_test_suite.py
+36 −0 targets/CFS/procedures/cfs_sbn_test_suite.py
+36 −0 targets/CFS/procedures/cfs_sc_test_suite.py
+88 −0 targets/CFS/procedures/cfs_test_groups_for_cfe/cfe_es_checkout.py
+71 −0 targets/CFS/procedures/cfs_test_groups_for_cfe/cfe_evs_checkout.py
+61 −0 targets/CFS/procedures/cfs_test_groups_for_cfe/cfe_sb_checkout.py
+72 −0 targets/CFS/procedures/cfs_test_groups_for_cfe/cfe_tbl_checkout.py
+67 −0 targets/CFS/procedures/cfs_test_groups_for_cfe/cfe_time_checkout.py
+373 −80 targets/CFS/procedures/cfs_test_groups_for_cfs_open_src/cfs_sc.py
+58 −40 targets/CFS/screens/cfe_ta_file_screen.txt
+46 −0 wrappers/cfs_test_groups_for_cfs_lab_apps/cfs_ci_lab.py
+50 −0 wrappers/cfs_test_groups_for_cfs_lab_apps/cfs_to_lab.py
2 changes: 1 addition & 1 deletion tools/commandline-tools
Submodule commandline-tools updated 0 files
2 changes: 1 addition & 1 deletion tools/eds
Submodule eds updated 0 files
2 changes: 1 addition & 1 deletion tools/elf2cfetbl
2 changes: 1 addition & 1 deletion tools/tblCRCTool