Skip to content

Commit 4cd63df

Browse files
committed
Use channel rather than port when dumping KISS frame.
1 parent 75ccf18 commit 4cd63df

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/kiss_frame.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
*
4141
* The first byte of the frame contains:
4242
*
43-
* * port number (radio channel) in upper nybble.
43+
* * radio channel in upper nybble.
44+
* (KISS doc uses "port" but I don't like that because it has too many meanings.)
4445
* * command in lower nybble.
4546
*
4647
*
@@ -954,7 +955,7 @@ void kiss_debug_print (fromto_t fromto, char *special, unsigned char *pmsg, int
954955
p = pmsg;
955956
if (*p == FEND) p++;
956957

957-
dw_printf ("%s %s %s KISS client application, port %d, total length = %d\n",
958+
dw_printf ("%s %s %s KISS client application, channel %d, total length = %d\n",
958959
prefix[(int)fromto], function[p[0] & 0xf], direction[(int)fromto],
959960
(p[0] >> 4) & 0xf, msg_len);
960961
}

0 commit comments

Comments
 (0)