@@ -63,7 +63,7 @@ static struct fx_context_s *fx_context[MAX_CHANS][MAX_SUBCHANS][MAX_SLICERS];
63
63
64
64
static void process_rs_block (int chan , int subchan , int slice , struct fx_context_s * F );
65
65
66
- static int my_unstuff (unsigned char * restrict pin , int ilen , unsigned char * restrict frame_buf );
66
+ static int my_unstuff (int chan , int subchan , int slice , unsigned char * restrict pin , int ilen , unsigned char * restrict frame_buf );
67
67
68
68
//#define FXTEST 1 // Define for standalone test application.
69
69
// It expects to find files fx01.dat, fx02.dat, ..., fx0b.dat/
@@ -182,7 +182,8 @@ void fx25_rec_bit (int chan, int subchan, int slice, int dbit)
182
182
183
183
if (fx25_get_debug () >= 2 ) {
184
184
text_color_set (DW_COLOR_INFO );
185
- dw_printf ("FX.25: Matched correlation tag 0x%02x with %d bit errors. Expecting %d data & %d check bytes.\n" ,
185
+ dw_printf ("FX.25[%d.%d]: Matched correlation tag 0x%02x with %d bit errors. Expecting %d data & %d check bytes.\n" ,
186
+ chan , slice , // ideally subchan too only if applicable
186
187
c ,
187
188
__builtin_popcountll (F -> accum ^ fx25_get_ctag_value (c )),
188
189
F -> k_data_radio , F -> nroots );
@@ -308,7 +309,7 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
308
309
{
309
310
if (fx25_get_debug () >= 3 ) {
310
311
text_color_set (DW_COLOR_DEBUG );
311
- dw_printf ("FX.25: Received RS codeblock.\n" );
312
+ dw_printf ("FX.25[%d.%d] : Received RS codeblock.\n" , chan , slice );
312
313
fx_hex_dump (F -> block , FX25_BLOCK_SIZE );
313
314
}
314
315
assert (F -> block [FX25_BLOCK_SIZE ] == FENCE );
@@ -323,10 +324,10 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
323
324
if (fx25_get_debug () >= 2 ) {
324
325
text_color_set (DW_COLOR_INFO );
325
326
if (derrors == 0 ) {
326
- dw_printf ("FX.25: FEC complete with no errors.\n" );
327
+ dw_printf ("FX.25[%d.%d] : FEC complete with no errors.\n" , chan , slice );
327
328
}
328
329
else {
329
- dw_printf ("FX.25: FEC complete, fixed %2d errors in byte positions:" ,derrors );
330
+ dw_printf ("FX.25[%d.%d] : FEC complete, fixed %2d errors in byte positions:" , chan , slice , derrors );
330
331
for (int k = 0 ; k < derrors ; k ++ ) {
331
332
dw_printf (" %d" , derrlocs [k ]);
332
333
}
@@ -335,7 +336,7 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
335
336
}
336
337
337
338
unsigned char frame_buf [FX25_MAX_DATA + 1 ]; // Out must be shorter than input.
338
- int frame_len = my_unstuff (F -> block , F -> dlen , frame_buf );
339
+ int frame_len = my_unstuff (chan , subchan , slice , F -> block , F -> dlen , frame_buf );
339
340
340
341
if (frame_len >= 14 + 1 + 2 ) { // Minimum length: Two addresses & control & FCS.
341
342
@@ -345,7 +346,7 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
345
346
346
347
if (fx25_get_debug () >= 3 ) {
347
348
text_color_set (DW_COLOR_DEBUG );
348
- dw_printf ("FX.25: Extracted AX.25 frame:\n" );
349
+ dw_printf ("FX.25[%d.%d] : Extracted AX.25 frame:\n" , chan , slice );
349
350
fx_hex_dump (frame_buf , frame_len );
350
351
}
351
352
@@ -360,22 +361,22 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
360
361
} else {
361
362
// Most likely cause is defective sender software.
362
363
text_color_set (DW_COLOR_ERROR );
363
- dw_printf ("FX.25: Bad FCS for AX.25 frame.\n" );
364
+ dw_printf ("FX.25[%d.%d] : Bad FCS for AX.25 frame.\n" , chan , slice );
364
365
fx_hex_dump (F -> block , F -> dlen );
365
366
fx_hex_dump (frame_buf , frame_len );
366
367
}
367
368
}
368
369
else {
369
370
// Most likely cause is defective sender software.
370
371
text_color_set (DW_COLOR_ERROR );
371
- dw_printf ("FX.25: AX.25 frame is shorter than minimum length.\n" );
372
+ dw_printf ("FX.25[%d.%d] : AX.25 frame is shorter than minimum length.\n" , chan , slice );
372
373
fx_hex_dump (F -> block , F -> dlen );
373
374
fx_hex_dump (frame_buf , frame_len );
374
375
}
375
376
}
376
377
else if (fx25_get_debug () >= 2 ) {
377
378
text_color_set (DW_COLOR_ERROR );
378
- dw_printf ("FX.25: FEC failed. Too many errors.\n" );
379
+ dw_printf ("FX.25[%d.%d] : FEC failed. Too many errors.\n" , chan , slice );
379
380
}
380
381
381
382
} // process_rs_block
@@ -387,7 +388,9 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
387
388
*
388
389
* Purpose: Remove HDLC it stuffing and surrounding flag delimiters.
389
390
*
390
- * Inputs: pin - "data" part of RS codeblock.
391
+ * Inputs: chan, subchan, slice - For error messages.
392
+ *
393
+ * pin - "data" part of RS codeblock.
391
394
* First byte must be HDLC "flag".
392
395
* May be followed by additional flags.
393
396
* There must be terminating flag but it might not be byte aligned.
@@ -409,7 +412,7 @@ static void process_rs_block (int chan, int subchan, int slice, struct fx_contex
409
412
*
410
413
***********************************************************************************/
411
414
412
- static int my_unstuff (unsigned char * restrict pin , int ilen , unsigned char * restrict frame_buf )
415
+ static int my_unstuff (int chan , int subchan , int slice , unsigned char * restrict pin , int ilen , unsigned char * restrict frame_buf )
413
416
{
414
417
unsigned char pat_det = 0 ; // Pattern detector.
415
418
unsigned char oacc = 0 ; // Accumulator for a byte out.
@@ -418,7 +421,7 @@ static int my_unstuff (unsigned char * restrict pin, int ilen, unsigned char * r
418
421
419
422
if (* pin != 0x7e ) {
420
423
text_color_set (DW_COLOR_ERROR );
421
- dw_printf ("FX.25 error: Data section did not start with 0x7e.\n" );
424
+ dw_printf ("FX.25[%d.%d] error: Data section did not start with 0x7e.\n" , chan , slice );
422
425
fx_hex_dump (pin , ilen );
423
426
return (0 );
424
427
}
@@ -436,7 +439,7 @@ static int my_unstuff (unsigned char * restrict pin, int ilen, unsigned char * r
436
439
437
440
if (pat_det == 0xfe ) {
438
441
text_color_set (DW_COLOR_ERROR );
439
- dw_printf ("FX.25: Invalid AX.25 frame - Seven '1' bits in a row.\n" );
442
+ dw_printf ("FX.25[%d.%d] : Invalid AX.25 frame - Seven '1' bits in a row.\n" , chan , slice );
440
443
fx_hex_dump (pin , ilen );
441
444
return 0 ;
442
445
}
@@ -451,7 +454,7 @@ static int my_unstuff (unsigned char * restrict pin, int ilen, unsigned char * r
451
454
}
452
455
else {
453
456
text_color_set (DW_COLOR_ERROR );
454
- dw_printf ("FX.25: Invalid AX.25 frame - Not a whole number of bytes.\n" );
457
+ dw_printf ("FX.25[%d.%d] : Invalid AX.25 frame - Not a whole number of bytes.\n" , chan , slice );
455
458
fx_hex_dump (pin , ilen );
456
459
return (0 );
457
460
}
@@ -470,7 +473,7 @@ static int my_unstuff (unsigned char * restrict pin, int ilen, unsigned char * r
470
473
} /* end of loop on all bits in block */
471
474
472
475
text_color_set (DW_COLOR_ERROR );
473
- dw_printf ("FX.25: Invalid AX.25 frame - Terminating flag not found.\n" );
476
+ dw_printf ("FX.25[%d.%d] : Invalid AX.25 frame - Terminating flag not found.\n" , chan , slice );
474
477
fx_hex_dump (pin , ilen );
475
478
476
479
return (0 ); // Should never fall off the end.
0 commit comments