@@ -522,7 +522,7 @@ static void * xmit_thread (void *arg)
522
522
tq_wait_while_empty (chan );
523
523
#if DEBUG
524
524
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 );
526
526
#endif
527
527
528
528
// 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)
751
751
752
752
#if DEBUG
753
753
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 ]);
755
755
#endif
756
756
ptt_set (OCTYPE_PTT , chan , 1 );
757
757
758
-
759
758
// Inform data link state machine that we are now transmitting.
760
759
761
760
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)
765
764
num_bits = hdlc_send_flags (chan , pre_flags , 0 );
766
765
#if DEBUG
767
766
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 ();
769
769
#endif
770
770
771
771
SLEEP_MS (10 ); // Give data link state machine a chance to
772
772
// to stuff more frames into the transmit queue,
773
773
// in response to dlq_seize_confirm, so
774
774
// we don't run off the end too soon.
775
775
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
776
786
777
787
/*
778
788
* Transmit the frame.
@@ -784,7 +794,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
784
794
if (nb > 0 ) numframe ++ ;
785
795
#if DEBUG
786
796
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 );
788
798
#endif
789
799
ax25_delete (pp );
790
800
@@ -826,7 +836,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
826
836
pp = tq_remove (chan , prio );
827
837
#if DEBUG
828
838
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 );
830
840
#endif
831
841
832
842
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)
835
845
if (nb > 0 ) numframe ++ ;
836
846
#if DEBUG
837
847
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 );
839
849
#endif
840
850
ax25_delete (pp );
841
851
@@ -856,7 +866,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
856
866
num_bits += nb ;
857
867
#if DEBUG
858
868
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 );
860
870
#endif
861
871
862
872
@@ -889,7 +899,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
889
899
890
900
#if DEBUG
891
901
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 );
893
903
#endif
894
904
895
905
if (wait_more > 0 ) {
@@ -915,7 +925,7 @@ static void xmit_ax25_frames (int chan, int prio, packet_t pp, int max_bundle)
915
925
#if DEBUG
916
926
text_color_set (DW_COLOR_DEBUG );
917
927
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 );
919
929
#endif
920
930
921
931
ptt_set (OCTYPE_PTT , chan , 0 );
@@ -1147,9 +1157,9 @@ static void xmit_speech (int c, packet_t pp)
1147
1157
int xmit_speak_it (char * script , int c , char * orig_msg )
1148
1158
{
1149
1159
int err ;
1150
- char cmd [2000 ];
1151
- char * p ;
1152
1160
char msg [2000 ];
1161
+ char cmd [sizeof (msg ) + 16 ];
1162
+ char * p ;
1153
1163
1154
1164
/* Remove any quotes because it will mess up command line argument parsing. */
1155
1165
0 commit comments