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

PH_analyze_tlm_packet の返り値を修正 #416

Merged
merged 1 commit into from
Feb 25, 2025
Merged
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 tlm_cmd/packet_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ static PH_ACK PH_add_block_cmd_(const CommonCmdPacket* packet)
PH_ACK PH_analyze_tlm_packet(const CommonTlmPacket* packet)
{
ctp_dest_flags_t flags;
if (!CTP_is_valid_packet(packet)) return PH_ACK_UNKNOWN; // FIXME: 返り値変えたい
if (!CTP_is_valid_packet(packet)) return PH_ACK_INVALID_PACKET;

flags = CTP_get_dest_flags(packet);

Expand Down
Loading