Skip to content

Commit aea1eb7

Browse files
committed
Better error message for invalid channel which could
be caused by use of SMACK rather than standard KISS.
1 parent c559f0d commit aea1eb7

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

kiss_frame.c

+13-18
Original file line numberDiff line numberDiff line change
@@ -539,8 +539,6 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
539539
kissnet_copy (kiss_msg, kiss_len, port, cmd, client);
540540
}
541541

542-
/* Special hack - Discard apparently bad data from Linux AX25. */
543-
544542
/* Note July 2017: There is a variant of of KISS, called SMACK, that assumes */
545543
/* a TNC can never have more than 8 ports. http://symek.de/g/smack.html */
546544
/* It uses the MSB to indicate that a checksum is added. I wonder if this */
@@ -580,27 +578,24 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
580578
// This workaround seems sound to me, though, so perhaps this is just a documentation issue.
581579

582580

583-
if (kiss_len > 16 &&
584-
(port == 2 || port == 8) &&
585-
kiss_msg[1] == 'Q' << 1 &&
586-
kiss_msg[2] == 'S' << 1 &&
587-
kiss_msg[3] == 'T' << 1 &&
588-
kiss_msg[4] == ' ' << 1 &&
589-
kiss_msg[15] == 3 &&
590-
kiss_msg[16] == 0xcd) {
591-
592-
if (debug) {
593-
text_color_set(DW_COLOR_ERROR);
594-
dw_printf ("Special case - Drop packets which appear to be in error.\n");
595-
}
596-
return;
597-
}
598-
581+
// Would it make sense to implement SMACK? I don't think so.
582+
// Adding a checksum to the KISS data offers no benefit because it is very reliable.
583+
// It violates the original protocol specification which states that 16 ports (radio channels) are possible.
584+
// SMACK imposes a limit of 8. That limit might have been OK back in 1991 but not now.
585+
// There are people using more than 8 radio channels (using SDR not traditional radios) with direwolf.
586+
587+
599588
/* Verify that the port (channel) number is valid. */
600589

601590
if (port < 0 || port >= MAX_CHANS || ! save_audio_config_p->achan[port].valid) {
602591
text_color_set(DW_COLOR_ERROR);
603592
dw_printf ("Invalid transmit channel %d from KISS client app.\n", port);
593+
dw_printf ("\n");
594+
dw_printf ("Are you using AX.25 for Linux? It might be trying to use a modified\n");
595+
dw_printf ("version of KISS which uses the port field differently than the\n");
596+
dw_printf ("original KISS protocol specification. The solution might be to use\n");
597+
dw_printf ("a command like \"kissparms -c 1 -p radio\" to set CRC none mode.\n");
598+
dw_printf ("\n");
604599
text_color_set(DW_COLOR_DEBUG);
605600
kiss_debug_print (FROM_CLIENT, NULL, kiss_msg, kiss_len);
606601
return;

0 commit comments

Comments
 (0)