reconstruct: restore brave-tape3 decoder stage

This commit is contained in:
2026-08-28 14:35:19 +03:00
parent e25feb6824
commit a589416cfc

View File

@ -162,7 +162,9 @@ void IR_Decoder::_tick()
if (addrAcceptSendTo && addrAcceptSendTo < IR_Broadcast) if (addrAcceptSendTo && addrAcceptSendTo < IR_Broadcast)
isWaitingAcceptSend = true; isWaitingAcceptSend = true;
} }
gotRaw.set(&packInfo, id); // Raw keeps the decoder's common minimum-size contract. Known packet
// layouts are validated by their typed BasePack::set calls above.
gotRaw.set(&packInfo, id, false);
} }
if (isWaitingAcceptSend && millis() - acceptSendTimer > acceptDelay) if (isWaitingAcceptSend && millis() - acceptSendTimer > acceptDelay)
{ {