Skip to content

Commit

Permalink
flag also repeated telegrams as echoed / own telegrams
Browse files Browse the repository at this point in the history
  • Loading branch information
Ing-Dom committed Jun 2, 2024
1 parent a645575 commit 6eb7af7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/knx/tpuart_data_link_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,8 @@ void TpUartDataLinkLayer::processRxFrameComplete()
// Wenn ein Frame gesendet wurde
if (_txState == TX_FRAME)
{
// prüfe ob das Empfangen diesem entspricht
if (!memcmp(_rxFrame->data(), _txFrame->data(), _txFrame->size()))
// prüfe ob das Empfangen diesem entspricht: Vergleich der Quelladresse und Zieladresse sowie Startbyte ohne Berücksichtigung des Retry-Bits
if(!((_rxFrame->data(0) ^ _txFrame->data(0)) & ~0x20) && _rxFrame->destination() == _txFrame->destination() && _rxFrame->source() == _txFrame->source())
{
// und markiere das entsprechend
// println("MATCH");
Expand Down

0 comments on commit 6eb7af7

Please sign in to comment.