Skip to content

Commit 3220931

Browse files
committed
Race condition when starting up with transmit queue not empty. Larger buffers.
1 parent 1712fbc commit 3220931

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/kissutil.c

+9-3
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,15 @@ int main (int argc, char *argv[])
308308
}
309309
#endif
310310

311+
// Give the threads a little while to open the TNC connection before trying to use it.
312+
// This was a problem when the transmit queue already existed when starting up.
313+
314+
SLEEP_MS (500);
315+
311316
/*
312317
* Process keyboard or other input source.
313318
*/
314-
char stuff[1000];
319+
char stuff[AX25_MAX_PACKET_LEN];
315320

316321
if (strlen(transmit_from) > 0) {
317322
/*
@@ -544,8 +549,8 @@ static void process_input (char *stuff)
544549

545550
static void send_to_kiss_tnc (int chan, int cmd, char *data, int dlen)
546551
{
547-
unsigned char temp[1000];
548-
unsigned char kissed[2000];
552+
unsigned char temp[AX25_MAX_PACKET_LEN]; // We don't limit to 256 info bytes.
553+
unsigned char kissed[AX25_MAX_PACKET_LEN*2];
549554
int klen;
550555

551556
if (chan < 0 || chan > 15) {
@@ -587,6 +592,7 @@ static void send_to_kiss_tnc (int chan, int cmd, char *data, int dlen)
587592
if (rc != klen) {
588593
text_color_set(DW_COLOR_ERROR);
589594
dw_printf ("ERROR writing KISS frame to serial port.\n");
595+
//dw_printf ("DEBUG wanted %d, got %d\n", klen, rc);
590596
}
591597
}
592598

0 commit comments

Comments
 (0)