Skip to content

Commit

Permalink
Fix for TNC2 digi repeating
Browse files Browse the repository at this point in the history
  • Loading branch information
sh123 committed Dec 30, 2022
1 parent 4d653c3 commit d094d05
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/kiss_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,6 @@ void Processor::queueRigToSerial(Cmd cmd, const byte *packet, int packetLength)
void Processor::queueSerialToRig(Cmd cmd, const byte *packet, int packetLength) {
bool result = 1;
if (disableKiss_) {
// inject proprietary identifier
if (usePrefix3_) {
result &= serialToRigQueue_.unshift('<');
result &= serialToRigQueue_.unshift(0xff);
result &= serialToRigQueue_.unshift(0x01);
}
// TNC2, send as is, receiveByteRaw will deal with it
for (int i = 0; i < packetLength; i++) {
byte rxByte = packet[i];
Expand Down

0 comments on commit d094d05

Please sign in to comment.