Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #345, correct doxygen parameters #346

Merged
merged 1 commit into from
Dec 1, 2022
Merged
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 fsw/src/cf_cfdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void CF_CFDP_ResetTransaction(CF_Transaction_t *t, int keep_history);
* t must not be NULL.
*
* @param t Pointer to the transaction object
* @param cc Status Code value to set within transaction
* @param txn_stat Status Code value to set within transaction
*/
void CF_CFDP_SetTxnStatus(CF_Transaction_t *t, CF_TxnStatus_t txn_stat);

Expand Down
2 changes: 1 addition & 1 deletion fsw/src/cf_cfdp_r.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void CF_CFDP_R_Init(CF_Transaction_t *t);
* t must not be NULL.
*
* @param t Pointer to the transaction object
* @param cc Status Code value to set within transaction
* @param txn_stat Status Code value to set within transaction
*/
void CF_CFDP_R2_SetFinTxnStatus(CF_Transaction_t *t, CF_TxnStatus_t txn_stat);

Expand Down
4 changes: 2 additions & 2 deletions fsw/src/cf_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -495,9 +495,9 @@ CF_CFDP_ConditionCode_t CF_TxnStatus_To_ConditionCode(CF_TxnStatus_t txn_stat);
* @par Assumptions, External Events, and Notes:
* None
*
* @param txn_stat Transaction status
* @param cc CFDP condition code
*
* @returns CFDP protocol condition code
* @returns Transaction status code
*/
CF_TxnStatus_t CF_TxnStatus_From_ConditionCode(CF_CFDP_ConditionCode_t cc);

Expand Down