194
194
// Debug switches for different types of information.
195
195
// Should have command line options instead of changing source and recompiling.
196
196
197
- static int s_debug_protocol_errors = 1 ; // Less serious Protocol errors.
197
+ static int s_debug_protocol_errors = 0 ; // Less serious Protocol errors.
198
198
// Useful for debugging but unnecessarily alarming other times.
199
+ // Was it intentially left on for release 1.6?
199
200
200
201
static int s_debug_client_app = 0 ; // Interaction with client application.
201
202
// dl_connect_request, dl_data_request, dl_data_indication, etc.
202
203
203
204
static int s_debug_radio = 0 ; // Received frames and channel busy status.
204
205
// lm_data_indication, lm_channel_busy
206
+
205
207
static int s_debug_variables = 0 ; // Variables, state changes.
206
208
207
209
static int s_debug_retry = 0 ; // Related to lost I frames, REJ, SREJ, timeout, resending.
@@ -594,6 +596,8 @@ static int AX25MODULO(int n, int m, const char *file, const char *func, int line
594
596
#define PAUSE_TM201 pause_tm201(S, __func__, __LINE__)
595
597
#define RESUME_TM201 resume_tm201(S, __func__, __LINE__)
596
598
599
+ // TODO: add SELECT_T1_VALUE for debugging.
600
+
597
601
598
602
static void dl_data_indication (ax25_dlsm_t * S , int pid , char * data , int len );
599
603
@@ -6225,7 +6229,7 @@ static void select_t1_value (ax25_dlsm_t *S)
6225
6229
6226
6230
// This goes up exponentially if implemented as documented!
6227
6231
// For example, if we were trying to connect to a station which is not there, we
6228
- // would retry after 3, the 8, 16, 32, ... and not time out for over an hour.
6232
+ // would retry after 3, then 8, 16, 32, ... and not time out for over an hour.
6229
6233
// That's ridiculous. Let's try increasing it by a quarter second each time.
6230
6234
// We now give up after about a minute.
6231
6235
@@ -6242,12 +6246,30 @@ static void select_t1_value (ax25_dlsm_t *S)
6242
6246
}
6243
6247
6244
6248
6249
+ // See https://groups.io/g/direwolf/topic/100782658#8542
6250
+ // Perhaps the demands of file transfer lead to this problem.
6251
+
6252
+ // "Temporary" hack.
6253
+ // Automatic fine tuning of t1v generally works well, but on very rare occasions, it gets wildly out of control.
6254
+ // Until I have more time to properly diagnose this, add some guardrails so it does not go flying off a cliff.
6255
+
6256
+ // The initial value of t1v is frack + frack * 2 (number of digipeateers in path)
6257
+ // If anything, it should automatically be adjusted down.
6258
+ // Let's say, something smells fishy if it exceeds twice that initial value.
6259
+
6260
+ // TODO: Add some instrumentation to record where this was called from and all the values in the printf below.
6261
+
6262
+ #if 1
6263
+ if (S -> t1v < 0.25 || S -> t1v > 2 * (g_misc_config_p -> frack * (2 * (S -> num_addr - 2 ) + 1 )) ) {
6264
+ INIT_T1V_SRT ;
6265
+ }
6266
+ #else
6245
6267
if (S -> t1v < 0.99 || S -> t1v > 30 ) {
6246
6268
text_color_set (DW_COLOR_ERROR );
6247
6269
dw_printf ("INTERNAL ERROR? Stream %d: select_t1_value, rc = %d, t1 remaining = %.3f, old srt = %.3f, new srt = %.3f, Extreme new t1v = %.3f\n" ,
6248
6270
S -> stream_id , S -> rc , S -> t1_remaining_when_last_stopped , old_srt , S -> srt , S -> t1v );
6249
6271
}
6250
-
6272
+ #endif
6251
6273
} /* end select_t1_value */
6252
6274
6253
6275
0 commit comments