25
25
*
26
26
* Purpose: Common code used by Serial port and network versions of KISS protocol.
27
27
*
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
29
29
*
30
30
* ( An extended form, to handle multiple TNCs on a single serial port.
31
31
* Not applicable for our situation. http://he.fi/pub/oh7lzb/bpq/multi-kiss.pdf )
40
40
*
41
41
* The first byte of the frame contains:
42
42
*
43
- * * port number in upper nybble.
43
+ * * port number (radio channel) in upper nybble.
44
44
* * command in lower nybble.
45
45
*
46
46
*
47
- * Commands from application recognized :
47
+ * Commands from application tp TNC :
48
48
*
49
49
* _0 Data Frame AX.25 frame in raw format.
50
50
*
72
72
*
73
73
* _0 Data Frame Received AX.25 frame in raw format.
74
74
*
75
+ * _6 SetHardware TNC specific.
76
+ * Usually a response to a query.
77
+ *
75
78
*---------------------------------------------------------------*/
76
79
77
80
#include "direwolf.h"
88
91
#include "kiss_frame.h"
89
92
#include "tq.h"
90
93
#include "xmit.h"
94
+ #include "version.h"
95
+
91
96
92
97
/* In server.c. Should probably move to some misc. function file. */
93
98
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
138
143
139
144
#endif
140
145
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
145
150
146
151
147
152
/*-------------------------------------------------------------------
@@ -171,6 +176,7 @@ void kiss_frame_init (struct audio_s *pa)
171
176
* Inputs: in - Address of input block.
172
177
* First byte is the "type indicator" with type and
173
178
* 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.
174
180
*
175
181
* This seems cumbersome and confusing to have this
176
182
* one byte offset when encapsulating an AX.25 frame.
@@ -190,7 +196,7 @@ void kiss_frame_init (struct audio_s *pa)
190
196
* FEND - Magic frame separator.
191
197
*
192
198
* 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.
194
200
*
195
201
*-----------------------------------------------------------------*/
196
202
@@ -242,6 +248,8 @@ int kiss_encapsulate (unsigned char *in, int ilen, unsigned char *out)
242
248
* the escapes or FEND.
243
249
* First byte is the "type indicator" with type and
244
250
* 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.
245
253
* Note that this is "binary" data and can contain
246
254
* nul (0x00) values. Don't treat it like a text string!
247
255
*
@@ -509,6 +517,8 @@ void kiss_rec_byte (kiss_frame_t *kf, unsigned char ch, int debug, int client, v
509
517
// Some functions are only for the TNC end.
510
518
// Other functions are suitble for both TNC and client app.
511
519
520
+ // This is used only by the TNC sided.
521
+
512
522
void kiss_process_msg (unsigned char * kiss_msg , int kiss_len , int debug , int client , void (* sendfun )(int ,int ,unsigned char * ,int ,int ))
513
523
{
514
524
int port ;
@@ -690,6 +700,7 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
690
700
* debug - debug level.
691
701
*
692
702
* client - Client app number for TCP KISS.
703
+ * Needed so we can send any response to the right client app.
693
704
* Ignored for pseudo terminal and serial port.
694
705
*
695
706
* 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
713
724
* be used for throttling of large transmissions and performing some action
714
725
* after the last frame has been sent.
715
726
*
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
717
728
* like. I'm aware of only two, drastically different, implementations:
718
729
*
719
730
* fldigi - http://www.w1hkj.com/FldigiHelp-3.22/kiss_command_page.html
720
731
*
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.
723
738
*
724
739
* Used by applications, http://www.w1hkj.com/FldigiHelp/kiss_host_prgs_page.html
725
740
* - BPQ32
@@ -740,6 +755,19 @@ void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug, int cli
740
755
*
741
756
* Let's start with the easy to understand human readable format.
742
757
*
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
+ *
743
771
*--------------------------------------------------------------------*/
744
772
745
773
#ifndef KISSUTIL
@@ -754,39 +782,37 @@ static void kiss_set_hardware (int chan, char *command, int debug, int client, v
754
782
* param = '\0' ;
755
783
param ++ ;
756
784
757
- if (strcmp (command , "TXBUF " ) == 0 ) { /* Number of frames in transmit queue . */
785
+ if (strcmp (command , "TNC " ) == 0 ) { /* TNC - Identify software version . */
758
786
759
787
if (strlen (param ) > 0 ) {
760
788
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" );
762
790
}
763
791
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
+ }
769
795
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. */
771
797
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
+ }
773
802
803
+ int n = tq_count (chan , -1 , "" , "" , 1 );
804
+ snprintf (response , sizeof (response ), "TXBUF:%d" , n );
774
805
(* sendfun ) (chan , KISS_CMD_SET_HARDWARE , (unsigned char * )response , strlen (response ), client );
775
806
}
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
+
782
808
else {
783
809
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 );
785
811
}
786
812
}
787
813
else {
788
814
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 );
790
816
}
791
817
return ;
792
818
0 commit comments