Skip to content
Open
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
3 changes: 3 additions & 0 deletions Svc/TlmPacketizer/TlmPacketizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ void TlmPacketizer::setPacketList(const TlmPacketizerPacketList& packetList,
}
const Fw::Success insertStatus = this->m_channelIndices.insert(id, entryIndex);
FW_ASSERT(insertStatus == Fw::Success::SUCCESS, static_cast<FwAssertArgType>(insertStatus));
} else {
// Ensure it is a duplicate in the ignore list, not a duplicate of a valid channel
FW_ASSERT(this->m_channels[entryIndex].ignored, static_cast<FwAssertArgType>(id));
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
}
// is ignored channel - update entry in place via reference
TlmEntry& entry = this->m_channels[entryIndex];
Expand Down
Loading