-
Notifications
You must be signed in to change notification settings - Fork 10
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
PH の返り値を元に戻す #281
PH の返り値を元に戻す #281
Conversation
[NITS] テレメCSVのstatus変換も?(これ,整合性担保だるいんで,なんとかしたいねぇ...) |
issueはたてた ut-issl/tlm-cmd-db#9 |
@@ -35,9 +35,9 @@ PH_ACK PH_user_analyze_cmd(const CommonCmdPacket* packet) | |||
switch (CCP_get_dest_type(packet)) | |||
{ | |||
case CCP_DEST_TYPE_TO_AOBC: | |||
return (PH_add_aobc_cmd_(packet) == PH_ACK_SUCCESS) ? PH_ACK_SUCCESS : PH_ACK_PL_LIST_FULL; | |||
return (PH_add_aobc_cmd_(packet) == PH_ACK_SUCCESS) ? PH_ACK_FORWARDED : PH_ACK_PL_LIST_FULL; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[NITS] PH_user_analyze_cmd
の doxygen commentのretvalも修正お願いします
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました
603ad73
to
cafc6d2
Compare
諸々修正して rebase しました |
cafc6d2
to
b25473b
Compare
rebase して CI 通ったのでマージする |
概要
PH の返り値を元に戻す
Issue
N/A
詳細
#242 で返り値が複数あってわかりにくかったので、
PH_ACK_SUCCESS
のみで統一していたが、実用上どこに登録されたのかデバッグなどで見にくい、という話が上がったので戻すことにした検証結果
手元で test を通した
影響範囲
小