@@ -539,8 +539,6 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
539
539
kissnet_copy (kiss_msg , kiss_len , port , cmd , client );
540
540
}
541
541
542
- /* Special hack - Discard apparently bad data from Linux AX25. */
543
-
544
542
/* Note July 2017: There is a variant of of KISS, called SMACK, that assumes */
545
543
/* a TNC can never have more than 8 ports. http://symek.de/g/smack.html */
546
544
/* 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
580
578
// This workaround seems sound to me, though, so perhaps this is just a documentation issue.
581
579
582
580
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
+
599
588
/* Verify that the port (channel) number is valid. */
600
589
601
590
if (port < 0 || port >= MAX_CHANS || ! save_audio_config_p -> achan [port ].valid ) {
602
591
text_color_set (DW_COLOR_ERROR );
603
592
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" );
604
599
text_color_set (DW_COLOR_DEBUG );
605
600
kiss_debug_print (FROM_CLIENT , NULL , kiss_msg , kiss_len );
606
601
return ;
0 commit comments