Skip to content

Commit dc40b46

Browse files
committed
Add troubleshooting tip to error message.
1 parent 0661e23 commit dc40b46

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/kiss_frame.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -593,9 +593,12 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
593593
dw_printf ("Invalid transmit channel %d from KISS client app.\n", port);
594594
dw_printf ("\n");
595595
dw_printf ("Are you using AX.25 for Linux? It might be trying to use a modified\n");
596-
dw_printf ("version of KISS which uses the port field differently than the\n");
596+
dw_printf ("version of KISS which uses the port (channel) field differently than the\n");
597597
dw_printf ("original KISS protocol specification. The solution might be to use\n");
598598
dw_printf ("a command like \"kissparms -c 1 -p radio\" to set CRC none mode.\n");
599+
dw_printf ("Another way of doing this is pre-loading the \"kiss\" kernel module with CRC disabled:\n");
600+
dw_printf ("sudo /sbin/modprobe -q mkiss crc_force=1\n");
601+
599602
dw_printf ("\n");
600603
text_color_set(DW_COLOR_DEBUG);
601604
kiss_debug_print (FROM_CLIENT, NULL, kiss_msg, kiss_len);

0 commit comments

Comments
 (0)