Skip to content

Commit 8a2138e

Browse files
committed
More transmit timing debug code.
1 parent bfa7f4a commit 8a2138e

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

xmit.c

+22-12
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ static void * xmit_thread (void *arg)
522522
tq_wait_while_empty (chan);
523523
#if DEBUG
524524
text_color_set(DW_COLOR_DEBUG);
525-
dw_printf ("xmit_thread, channel %d: woke up\n", c);
525+
dw_printf ("xmit_thread, channel %d: woke up\n", chan);
526526
#endif
527527

528528
// Does this extra loop offer any benefit?
@@ -751,11 +751,10 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
751751

752752
#if DEBUG
753753
text_color_set(DW_COLOR_DEBUG);
754-
dw_printf ("xmit_thread: Turn on PTT now for channel %d. speed = %d\n", chan, xmit_bits_per_sec[chan]);
754+
dw_printf ("xmit_thread: t=%.3f, Turn on PTT now for channel %d. speed = %d\n", dtime_now()-time_ptt, chan, xmit_bits_per_sec[chan]);
755755
#endif
756756
ptt_set (OCTYPE_PTT, chan, 1);
757757

758-
759758
// Inform data link state machine that we are now transmitting.
760759

761760
dlq_seize_confirm (chan); // C4.2. "This primitive indicates, to the Data-link State
@@ -765,14 +764,25 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
765764
num_bits = hdlc_send_flags (chan, pre_flags, 0);
766765
#if DEBUG
767766
text_color_set(DW_COLOR_DEBUG);
768-
dw_printf ("xmit_thread: txdelay=%d [*10], pre_flags=%d, num_bits=%d\n", xmit_txdelay[chan], pre_flags, num_bits);
767+
dw_printf ("xmit_thread: t=%.3f, txdelay=%d [*10], pre_flags=%d, num_bits=%d\n", dtime_now()-time_ptt, xmit_txdelay[chan], pre_flags, num_bits);
768+
double presleep = dtime_now();
769769
#endif
770770

771771
SLEEP_MS (10); // Give data link state machine a chance to
772772
// to stuff more frames into the transmit queue,
773773
// in response to dlq_seize_confirm, so
774774
// we don't run off the end too soon.
775775

776+
#if DEBUG
777+
text_color_set(DW_COLOR_DEBUG);
778+
// How long did sleep last?
779+
dw_printf ("xmit_thread: t=%.3f, Should be 0.010 second after the above.\n", dtime_now()-time_ptt);
780+
double naptime = dtime_now() - presleep;
781+
if (naptime > 0.015) {
782+
text_color_set(DW_COLOR_ERROR);
783+
dw_printf ("Sleep for 10 ms actually took %.3f second!\n", naptime);
784+
}
785+
#endif
776786

777787
/*
778788
* Transmit the frame.
@@ -784,7 +794,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
784794
if (nb > 0) numframe++;
785795
#if DEBUG
786796
text_color_set(DW_COLOR_DEBUG);
787-
dw_printf ("xmit_thread: flen=%d, nb=%d, num_bits=%d, numframe=%d\n", flen, nb, num_bits, numframe);
797+
dw_printf ("xmit_thread: t=%.3f, nb=%d, num_bits=%d, numframe=%d\n", dtime_now()-time_ptt, nb, num_bits, numframe);
788798
#endif
789799
ax25_delete (pp);
790800

@@ -826,7 +836,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
826836
pp = tq_remove (chan, prio);
827837
#if DEBUG
828838
text_color_set(DW_COLOR_DEBUG);
829-
dw_printf ("xmit_thread: tq_remove(chan=%d, prio=%d) returned %p\n", chan, prio, pp);
839+
dw_printf ("xmit_thread: t=%.3f, tq_remove(chan=%d, prio=%d) returned %p\n", dtime_now()-time_ptt, chan, prio, pp);
830840
#endif
831841

832842
nb = send_one_frame (chan, prio, pp);
@@ -835,7 +845,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
835845
if (nb > 0) numframe++;
836846
#if DEBUG
837847
text_color_set(DW_COLOR_DEBUG);
838-
dw_printf ("xmit_thread: flen=%d, nb=%d, num_bits=%d, numframe=%d\n", flen, nb, num_bits, numframe);
848+
dw_printf ("xmit_thread: t=%.3f, nb=%d, num_bits=%d, numframe=%d\n", dtime_now()-time_ptt, nb, num_bits, numframe);
839849
#endif
840850
ax25_delete (pp);
841851

@@ -856,7 +866,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
856866
num_bits += nb;
857867
#if DEBUG
858868
text_color_set(DW_COLOR_DEBUG);
859-
dw_printf ("xmit_thread: txtail=%d [*10], post_flags=%d, nb=%d, num_bits=%d\n", xmit_txtail[chan], post_flags, nb, num_bits);
869+
dw_printf ("xmit_thread: t=%.3f, txtail=%d [*10], post_flags=%d, nb=%d, num_bits=%d\n", dtime_now()-time_ptt, xmit_txtail[chan], post_flags, nb, num_bits);
860870
#endif
861871

862872

@@ -889,7 +899,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
889899

890900
#if DEBUG
891901
text_color_set(DW_COLOR_DEBUG);
892-
dw_printf ("xmit_thread: xmit duration=%d, %d already elapsed since PTT, wait %d more\n", duration, already, wait_more );
902+
dw_printf ("xmit_thread: t=%.3f, xmit duration=%d, %d already elapsed since PTT, wait %d more\n", dtime_now()-time_ptt, duration, already, wait_more );
893903
#endif
894904

895905
if (wait_more > 0) {
@@ -915,7 +925,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
915925
#if DEBUG
916926
text_color_set(DW_COLOR_DEBUG);
917927
time_now = dtime_now();
918-
dw_printf ("xmit_thread: Turn off PTT now. Actual time on was %d mS, vs. %d desired\n", (int) ((time_now - time_ptt) * 1000.), duration);
928+
dw_printf ("xmit_thread: t=%.3f, Turn off PTT now. Actual time on was %d mS, vs. %d desired\n", dtime_now()-time_ptt, (int) ((time_now - time_ptt) * 1000.), duration);
919929
#endif
920930

921931
ptt_set (OCTYPE_PTT, chan, 0);
@@ -1147,9 +1157,9 @@ static void xmit_speech (int c, packet_t pp)
11471157
int xmit_speak_it (char *script, int c, char *orig_msg)
11481158
{
11491159
int err;
1150-
char cmd[2000];
1151-
char *p;
11521160
char msg[2000];
1161+
char cmd[sizeof(msg) + 16];
1162+
char *p;
11531163

11541164
/* Remove any quotes because it will mess up command line argument parsing. */
11551165

0 commit comments

Comments
 (0)