Skip to content

Commit c23ab04

Browse files
committed
KISS Set Hardware commands TNC, TXBUF.
1 parent cc84a61 commit c23ab04

File tree

7 files changed

+133
-51
lines changed

7 files changed

+133
-51
lines changed

CHANGES.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11

22
# Revision History #
33

4-
## Version 1.5 -- Development snapshot C -- September 2017 ##
4+
## Version 1.5 -- Development snapshot C -- October 2017 ##
55

66
This is a snapshot of ongoing development towards version of 1.5. Some features might be incomplete or broken or not documented properly.
77

88
### New Features: ###
99

1010
- "kissutil" for troubleshooting a KISS TNC or interfacing to an application via files.
1111

12+
- KISS "Set Hardware" command to report transmit queue length.
13+
1214

1315
### Bugs Fixed: ###
1416

ax25_pad.c

+28-1
Original file line numberDiff line numberDiff line change
@@ -2000,7 +2000,7 @@ int ax25_pack (packet_t this_p, unsigned char result[AX25_MAX_PACKET_LEN])
20002000
assert (this_p->magic1 == MAGIC);
20012001
assert (this_p->magic2 == MAGIC);
20022002

2003-
assert (this_p->frame_len > 0 && this_p->frame_len <= AX25_MAX_PACKET_LEN);
2003+
assert (this_p->frame_len >= 0 && this_p->frame_len <= AX25_MAX_PACKET_LEN);
20042004

20052005
memcpy (result, this_p->frame_data, this_p->frame_len);
20062006

@@ -2503,6 +2503,33 @@ int ax25_get_pid (packet_t this_p)
25032503
}
25042504

25052505

2506+
2507+
/*------------------------------------------------------------------
2508+
*
2509+
* Function: ax25_get_frame_len
2510+
*
2511+
* Purpose: Get length of frame.
2512+
*
2513+
* Inputs: this_p - pointer to packet object.
2514+
*
2515+
* Returns: Number of octets in the frame buffer.
2516+
* Does NOT include the extra 2 for FCS.
2517+
*
2518+
*------------------------------------------------------------------*/
2519+
2520+
int ax25_get_frame_len (packet_t this_p)
2521+
{
2522+
assert (this_p->magic1 == MAGIC);
2523+
assert (this_p->magic2 == MAGIC);
2524+
2525+
assert (this_p->frame_len >= 0 && this_p->frame_len <= AX25_MAX_PACKET_LEN);
2526+
2527+
return (this_p->frame_len);
2528+
2529+
} /* end ax25_get_frame_len */
2530+
2531+
2532+
25062533
/*------------------------------------------------------------------------------
25072534
*
25082535
* Name: ax25_dedupe_crc

ax25_pad.h

+2
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,8 @@ extern int ax25_get_c2 (packet_t this_p);
427427

428428
extern int ax25_get_pid (packet_t this_p);
429429

430+
extern int ax25_get_frame_len (packet_t this_p);
431+
430432
extern unsigned short ax25_dedupe_crc (packet_t pp);
431433

432434
extern unsigned short ax25_m_m_crc (packet_t pp);

kiss_frame.c

+54-28
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* Purpose: Common code used by Serial port and network versions of KISS protocol.
2727
*
28-
* Description: The KISS TNS protocol is described in http://www.ka9q.net/papers/kiss.html
28+
* Description: The KISS TNC protocol is described in http://www.ka9q.net/papers/kiss.html
2929
*
3030
* ( An extended form, to handle multiple TNCs on a single serial port.
3131
* Not applicable for our situation. http://he.fi/pub/oh7lzb/bpq/multi-kiss.pdf )
@@ -40,11 +40,11 @@
4040
*
4141
* The first byte of the frame contains:
4242
*
43-
* * port number in upper nybble.
43+
* * port number (radio channel) in upper nybble.
4444
* * command in lower nybble.
4545
*
4646
*
47-
* Commands from application recognized:
47+
* Commands from application tp TNC:
4848
*
4949
* _0 Data Frame AX.25 frame in raw format.
5050
*
@@ -72,6 +72,9 @@
7272
*
7373
* _0 Data Frame Received AX.25 frame in raw format.
7474
*
75+
* _6 SetHardware TNC specific.
76+
* Usually a response to a query.
77+
*
7578
*---------------------------------------------------------------*/
7679

7780
#include "direwolf.h"
@@ -88,6 +91,8 @@
8891
#include "kiss_frame.h"
8992
#include "tq.h"
9093
#include "xmit.h"
94+
#include "version.h"
95+
9196

9297
/* In server.c. Should probably move to some misc. function file. */
9398
void hex_dump (unsigned char *p, int len);
@@ -138,10 +143,10 @@ static void kiss_set_hardware (int chan, char *command, int debug, int client, v
138143

139144
#endif
140145

141-
#if KISSUTIL
142-
#define text_color_set(x) ;
143-
#define dw_printf printf
144-
#endif
146+
//#if KISSUTIL
147+
//#define text_color_set(x) ;
148+
//#define dw_printf printf
149+
//#endif
145150

146151

147152
/*-------------------------------------------------------------------
@@ -171,6 +176,7 @@ void kiss_frame_init (struct audio_s *pa)
171176
* Inputs: in - Address of input block.
172177
* First byte is the "type indicator" with type and
173178
* channel but we don't care about that here.
179+
* If it happens to be FEND or FESC, it is escaped, like any other byte.
174180
*
175181
* This seems cumbersome and confusing to have this
176182
* one byte offset when encapsulating an AX.25 frame.
@@ -190,7 +196,7 @@ void kiss_frame_init (struct audio_s *pa)
190196
* FEND - Magic frame separator.
191197
*
192198
* Returns: Number of bytes in the output.
193-
* Absolute max length will be twice input plus 2.
199+
* Absolute max length (extremely unlikely) will be twice input plus 2.
194200
*
195201
*-----------------------------------------------------------------*/
196202

@@ -242,6 +248,8 @@ int kiss_encapsulate (unsigned char *in, int ilen, unsigned char *out)
242248
* the escapes or FEND.
243249
* First byte is the "type indicator" with type and
244250
* channel but we don't care about that here.
251+
* We treat it like any other byte with special handling
252+
* if it happens to be FESC.
245253
* Note that this is "binary" data and can contain
246254
* nul (0x00) values. Don't treat it like a text string!
247255
*
@@ -509,6 +517,8 @@ void kiss_rec_byte (kiss_frame_t *kf, unsigned char ch, int debug, int client, v
509517
// Some functions are only for the TNC end.
510518
// Other functions are suitble for both TNC and client app.
511519

520+
// This is used only by the TNC sided.
521+
512522
void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int client, void (*sendfun)(int,int,unsigned char*,int,int))
513523
{
514524
int port;
@@ -690,6 +700,7 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
690700
* debug - debug level.
691701
*
692702
* client - Client app number for TCP KISS.
703+
* Needed so we can send any response to the right client app.
693704
* Ignored for pseudo terminal and serial port.
694705
*
695706
* sendfun - Function to send something to the client application.
@@ -713,13 +724,17 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
713724
* be used for throttling of large transmissions and performing some action
714725
* after the last frame has been sent.
715726
*
716-
* The original KISS protocol spec offers no guidance on what this might look
727+
* The original KISS protocol spec offers no guidance on what "Set Hardware" might look
717728
* like. I'm aware of only two, drastically different, implementations:
718729
*
719730
* fldigi - http://www.w1hkj.com/FldigiHelp-3.22/kiss_command_page.html
720731
*
721-
* Everything is in human readable text in the form of:
722-
* COMMAND : [ parameter [ , parameter ... ] ]
732+
* Everything is in human readable in both directions:
733+
*
734+
* COMMAND: [ parameter [ , parameter ... ] ]
735+
*
736+
* Lack of a parameter, in the client to TNC direction, is a query
737+
* which should generate a response in the same format.
723738
*
724739
* Used by applications, http://www.w1hkj.com/FldigiHelp/kiss_host_prgs_page.html
725740
* - BPQ32
@@ -740,6 +755,19 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
740755
*
741756
* Let's start with the easy to understand human readable format.
742757
*
758+
* Commands: (Client to TNC, with parameter(s) to set something.)
759+
*
760+
* none yet
761+
*
762+
* Queries: (Client to TNC, no parameters, generate a response.)
763+
*
764+
* Query Response Comment
765+
* ----- -------- -------
766+
*
767+
* TNC: TNC:DIREWOLF 9.9 9.9 represents current version.
768+
*
769+
* TXBUF: TXBUF:999 Number of bytes (not frames) in transmit queue.
770+
*
743771
*--------------------------------------------------------------------*/
744772

745773
#ifndef KISSUTIL
@@ -754,39 +782,37 @@ static void kiss_set_hardware (int chan, char *command, int debug, int client, v
754782
*param = '\0';
755783
param++;
756784

757-
if (strcmp(command, "TXBUF") == 0) { /* Number of frames in transmit queue. */
785+
if (strcmp(command, "TNC") == 0) { /* TNC - Identify software version. */
758786

759787
if (strlen(param) > 0) {
760788
text_color_set(DW_COLOR_ERROR);
761-
dw_printf ("KISS Set Hardware TXBUF: did not expect a parameter.\n");
789+
dw_printf ("KISS Set Hardware TNC: Did not expect a parameter.\n");
762790
}
763791

764-
// See what we have in the transmit queue for specified channel.
765-
// fldigi uses bytes but frames seems to make more sense in this situation.
766-
// Do we add one if PTT is on? That information doesn't seem to be easily available.
767-
768-
// TODO: FIXME: not implemented yet.
792+
snprintf (response, sizeof(response), "DIREWOLF %d.%d", MAJOR_VERSION, MINOR_VERSION);
793+
(*sendfun) (chan, KISS_CMD_SET_HARDWARE, (unsigned char *)response, strlen(response), client);
794+
}
769795

770-
// n = tq_count (chan, TQ_PRIO_0_HI) + tq_count (chan, TQ_PRIO_1_LO);
796+
else if (strcmp(command, "TXBUF") == 0) { /* TXBUF - Number of bytes in transmit queue. */
771797

772-
snprintf (response, sizeof(response), "TXBUF:whatever");
798+
if (strlen(param) > 0) {
799+
text_color_set(DW_COLOR_ERROR);
800+
dw_printf ("KISS Set Hardware TXBUF: Did not expect a parameter.\n");
801+
}
773802

803+
int n = tq_count (chan, -1, "", "", 1);
804+
snprintf (response, sizeof(response), "TXBUF:%d", n);
774805
(*sendfun) (chan, KISS_CMD_SET_HARDWARE, (unsigned char *)response, strlen(response), client);
775806
}
776-
else if (strcmp(command, "TNC") == 0) { /* Identify software version. */
777-
; // TODO...
778-
}
779-
else if (strcmp(command, "TRXS") == 0) {
780-
; // TODO... BUSY
781-
}
807+
782808
else {
783809
text_color_set(DW_COLOR_ERROR);
784-
dw_printf ("KISS Set Hardware invalid command.\n");
810+
dw_printf ("KISS Set Hardware unrecognized command: %s.\n", command);
785811
}
786812
}
787813
else {
788814
text_color_set(DW_COLOR_ERROR);
789-
dw_printf ("KISS Set Hardware expected the form COMMAND:[parameter[,parameter...]]\n");
815+
dw_printf ("KISS Set Hardware \"%s\" expected the form COMMAND:[parameter[,parameter...]]\n", command);
790816
}
791817
return;
792818

server.c

+13-3
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,17 @@ static THREAD_F cmd_listen_thread (void *arg)
17051705
struct via_info {
17061706
unsigned char num_digi; /* Expect to be in range 1 to 7. Why not up to 8? */
17071707
char dcall[7][10];
1708-
} *v = (struct via_info *)cmd.data;
1708+
}
1709+
#if 1
1710+
// October 2017. gcc ??? complained:
1711+
// warning: dereferencing pointer 'v' does break strict-aliasing rules
1712+
// Try adding this attribute to get rid of the warning.
1713+
// If this upsets your compiler, take it out.
1714+
// Let me know. Maybe we could put in a compiler version check here.
1715+
1716+
__attribute__((__may_alias__))
1717+
#endif
1718+
*v = (struct via_info *)cmd.data;
17091719

17101720
char callsigns[AX25_MAX_ADDRS][AX25_MAX_ADDR_LEN];
17111721
int num_calls = 2; /* 2 plus any digipeaters. */
@@ -1866,7 +1876,7 @@ static THREAD_F cmd_listen_thread (void *arg)
18661876

18671877
int n = 0;
18681878
if (cmd.hdr.portx >= 0 && cmd.hdr.portx < MAX_CHANS) {
1869-
n = tq_count (cmd.hdr.portx, -1, "", "");
1879+
n = tq_count (cmd.hdr.portx, -1, "", "", 0);
18701880
}
18711881
reply.data_NETLE = host2netle(n);
18721882

@@ -1899,7 +1909,7 @@ static THREAD_F cmd_listen_thread (void *arg)
18991909

19001910
int n = 0;
19011911
if (cmd.hdr.portx >= 0 && cmd.hdr.portx < MAX_CHANS) {
1902-
n = tq_count (cmd.hdr.portx, -1, source, dest);
1912+
n = tq_count (cmd.hdr.portx, -1, source, dest, 0);
19031913
}
19041914
reply.data_NETLE = host2netle(n);
19051915

0 commit comments

Comments
 (0)