diff --git a/Guide-GroundSystem.md b/Guide-GroundSystem.md index 72cb043..b2b210a 100644 --- a/Guide-GroundSystem.md +++ b/Guide-GroundSystem.md @@ -1,4 +1,4 @@ -# cFS Ground System Version 2.1.9 +# cFS Ground System Version 2.1.10 ## cFS Ground System Info diff --git a/Guide-GroundSystem.txt b/Guide-GroundSystem.txt index 75201ac..e5adeff 100644 --- a/Guide-GroundSystem.txt +++ b/Guide-GroundSystem.txt @@ -1,4 +1,4 @@ -cFS Ground System Version 2.1.9 +cFS Ground System Version 2.1.10 cFS Ground System Info: diff --git a/Guide-Loading-Tables.md b/Guide-Loading-Tables.md new file mode 100644 index 0000000..54fbe49 --- /dev/null +++ b/Guide-Loading-Tables.md @@ -0,0 +1,51 @@ +# Loading Table(s) - Guide + +## Reference: cFE User's Guide +Reference URL: https://github.com/nasa/cFS/blob/gh-pages/cFE_Users_Guide.pdf + +1. Make sure the table image you want to load is in the on-board computer. +1. Open Your GroundSystem. + 1. Select "Start Command System". + 1. Select "Display Page" next to Table Services. This will take you to "Table Services" menu. + 1. Select "Send" next to "CFE_TBL_LOAD_CC". + 1. Enter the location and name of the table file you want to load in the input section: + + Example: `/cf/MyTblDefault2.tbl` + + 1. Select "send". If successful, you should see an event: + + `"Successful load of '/cf/' into '.' work buffer"` + + 1. At this point, your table is loaded but still "inactive". Before you can "activate" the table, you will have to "validate" it. Go back to "Table Services" menu. + 1. Select "Send" next to "CFE_TBL_VALIDATE_CC". + 1. There are two rows, "ActiveTblFlag" and "TableName". Fill it out accordingly. + + Example: + + `CFE_TBL_INACTIVE_BUFFER` for ActiveTblFlag + `TO_LAB_APP.MyTblDefault` for TableName + + Note - TableName is the actual table name, not the table file name. + 1. Select "Send". If successful, you should see an event: + + `" validation successful for Inactive '.'"` + + 1. Last step is to activate it. Go back to "Table Services" menu. + 1. Select "Send" next to "CFE_TBL_ACTIVATE_CC". + 1. Enter the table name you want to activate. + + Example: `TO_LAB_APP.MyTblDefault` + + Note - This is the full table name, not your table file name. + + If successful, you should see an event: + + `" Successfully updated '.'"` + +## Note(s) + +1. If you have an event that says the message is invalid when you send "validate" or "activate" command, check your ground station packet definitions vs. your cFS definitions. There could be a mismatch between the lengths. + +1. If you "validate" or "activate" and no events or errors occurred, your application is not passing through the "Table Manage API". "Validate" and "activate" are application level implementations. Check if you have: + 1. `CFE_TBL_Manage` implemented. + 1. `CFE_TBL_Manage` is being called. \ No newline at end of file diff --git a/Guide-Loading-Tables.txt b/Guide-Loading-Tables.txt deleted file mode 100644 index 4e17da5..0000000 --- a/Guide-Loading-Tables.txt +++ /dev/null @@ -1,63 +0,0 @@ -Loading Table(s) - Guide ------------------------- - -reference(s): cfe_tbl.dox - cFE Application Developers Guide - - 1. Make sure the table image you want to load is in the onboard computer. - - 2. Open Your GroundSystem. - - a. Select "Start Command System" - - b. Select "Display Page" next to Table Services. This will take you to "Table Services" - menu. - - c. Select "Send" next to "Load Table". - - d. Enter the location and name of the table file you want to load in the input section: - Example: /cf/MyTblDefault2.tbl - - e. Select "send". If successful, you should see an event: - "Successful load of '/cf/' into '.' work buffer" - - f. At this point, your table is loaded but still "inactive". Before you can "activate" the - table, you will have to "validate" it. Go back to "Table Services" menu. - - g. Select "Send" next to "Validate Table". - - h. There are two rows, "ActiveTblFlag" and "TableName". Fill it out accordingly. - Example: "CFE_TBL_INACTIVE_BUFFER" for ActiveTblFlag - "TO_LAB_APP.MyTblDefault" for TableName - - *Note - TableName is the actual table name, not the table file name. - - i. Select "Send". If successful, you should see an event: - " validation successful for Inactive '.'" - - j. Last step is to activate it. Go back to "Table Services" menu. - - k. Select "Send" next to "Activate Table". - - l. Enter the table name you want to activate. - Example: TO_LAB_APP.MyTblDefault - - *Note - This is the full table name, not your table file name. - - If successful, you should see an event: - " Successfully updated '.'" - -Note(s) -------- - - 1. If you have an event that says the message is invalid when you send "validate" or "activate" - command, check your ground station packet definitions vs. your cFS definitions. There - could be a mismatch between the lengths. - - 2. If you "validate" or "activate" and no events or errors occurred, your application is not - passing through the "Table Manage API". "Validate" and "activate" are application level - implementations. Check if you have: - - a. CFE_TBL_Manage implemented. - - b. CFE_TBL_Manage is being called. \ No newline at end of file diff --git a/README.md b/README.md index fa6f904..97d41ce 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,15 @@ This repository contains NASA's Lab Ground System (cFS-GroundSystem), which is a This lab application is a non-flight utility ground system to interact with the cFS. It is intended to be located in the `tools/cFS-GroundSystem` subdirectory of a cFS Mission Tree. The Core Flight System is bundled at (which includes cFS-GroundSystem as a submodule), which includes build and execution instructions. -See Guide-GroundSystem.txt for more information. +See [Guide-GroundSystem.md](https://github.com/nasa/cFS-GroundSystem/blob/master/Guide-GroundSystem.md) for more information. ## Version History +### Development Build: 2.1.10 + +- Change documentation for table loading guide to markdown +- See + ### Development Build: 2.1.9 - Upgrading PyQt4 to PyQt5 and includes a lot of cleanup/refactoring, and changes to the GUI itself