2
2
//
3
3
// This file is part of Dire Wolf, an amateur radio packet TNC.
4
4
//
5
- // Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021, 2022 John Langner, WB2OSZ
5
+ // Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021, 2022, 2023 John Langner, WB2OSZ
6
6
//
7
7
// This program is free software: you can redistribute it and/or modify
8
8
// it under the terms of the GNU General Public License as published by
@@ -276,12 +276,12 @@ int main (int argc, char *argv[])
276
276
277
277
case 'B' : /* -B for data Bit rate */
278
278
/* Also implies modem type based on speed. */
279
- /* Special case " AIS" rather than number. */
279
+ /* Special cases AIS, EAS rather than number. */
280
280
if (strcasecmp (optarg , "AIS" ) == 0 ) {
281
- B_opt = 12345 ; // See special case below.
281
+ B_opt = 0xA15A15 ; // See special case below.
282
282
}
283
283
else if (strcasecmp (optarg , "EAS" ) == 0 ) {
284
- B_opt = 23456 ; // See special case below.
284
+ B_opt = 0xEA5EA5 ; // See special case below.
285
285
}
286
286
else {
287
287
B_opt = atoi (optarg );
@@ -425,11 +425,6 @@ int main (int argc, char *argv[])
425
425
426
426
my_audio_config .achan [0 ].baud = B_opt ;
427
427
428
- if (my_audio_config .achan [0 ].baud < MIN_BAUD || my_audio_config .achan [0 ].baud > MAX_BAUD ) {
429
- text_color_set (DW_COLOR_ERROR );
430
- dw_printf ("Use a more reasonable bit rate in range of %d - %d.\n" , MIN_BAUD , MAX_BAUD );
431
- exit (EXIT_FAILURE );
432
- }
433
428
434
429
/* We have similar logic in direwolf.c, config.c, gen_packets.c, and atest.c, */
435
430
/* that need to be kept in sync. Maybe it could be a common function someday. */
@@ -438,21 +433,18 @@ int main (int argc, char *argv[])
438
433
my_audio_config .achan [0 ].modem_type = MODEM_AFSK ;
439
434
my_audio_config .achan [0 ].mark_freq = 1615 ;
440
435
my_audio_config .achan [0 ].space_freq = 1785 ;
441
- //strlcpy (my_audio_config.achan[0].profiles, "A", sizeof(my_audio_config.achan[0].profiles));
442
436
}
443
437
else if (my_audio_config .achan [0 ].baud < 600 ) { // e.g. HF SSB packet
444
438
my_audio_config .achan [0 ].modem_type = MODEM_AFSK ;
445
439
my_audio_config .achan [0 ].mark_freq = 1600 ;
446
440
my_audio_config .achan [0 ].space_freq = 1800 ;
447
441
// Previously we had a "D" which was fine tuned for 300 bps.
448
442
// In v1.7, it's not clear if we should use "B" or just stick with "A".
449
- //strlcpy (my_audio_config.achan[0].profiles, "B", sizeof(my_audio_config.achan[0].profiles));
450
443
}
451
444
else if (my_audio_config .achan [0 ].baud < 1800 ) { // common 1200
452
445
my_audio_config .achan [0 ].modem_type = MODEM_AFSK ;
453
446
my_audio_config .achan [0 ].mark_freq = DEFAULT_MARK_FREQ ;
454
447
my_audio_config .achan [0 ].space_freq = DEFAULT_SPACE_FREQ ;
455
- // Should default to E+ or something similar later.
456
448
}
457
449
else if (my_audio_config .achan [0 ].baud < 3600 ) {
458
450
my_audio_config .achan [0 ].modem_type = MODEM_QPSK ;
@@ -466,14 +458,14 @@ int main (int argc, char *argv[])
466
458
my_audio_config .achan [0 ].space_freq = 0 ;
467
459
strlcpy (my_audio_config .achan [0 ].profiles , "" , sizeof (my_audio_config .achan [0 ].profiles ));
468
460
}
469
- else if (my_audio_config .achan [0 ].baud == 12345 ) { // Hack for different use of 9600
461
+ else if (my_audio_config .achan [0 ].baud == 0xA15A15 ) { // Hack for different use of 9600
470
462
my_audio_config .achan [0 ].modem_type = MODEM_AIS ;
471
463
my_audio_config .achan [0 ].baud = 9600 ;
472
464
my_audio_config .achan [0 ].mark_freq = 0 ;
473
465
my_audio_config .achan [0 ].space_freq = 0 ;
474
466
strlcpy (my_audio_config .achan [0 ].profiles , " " , sizeof (my_audio_config .achan [0 ].profiles )); // avoid getting default later.
475
467
}
476
- else if (my_audio_config .achan [0 ].baud == 23456 ) {
468
+ else if (my_audio_config .achan [0 ].baud == 0xEA5EA5 ) {
477
469
my_audio_config .achan [0 ].modem_type = MODEM_EAS ;
478
470
my_audio_config .achan [0 ].baud = 521 ; // Actually 520.83 but we have an integer field here.
479
471
// Will make more precise in afsk demod init.
@@ -488,6 +480,12 @@ int main (int argc, char *argv[])
488
480
strlcpy (my_audio_config .achan [0 ].profiles , " " , sizeof (my_audio_config .achan [0 ].profiles )); // avoid getting default later.
489
481
}
490
482
483
+ if (my_audio_config .achan [0 ].baud < MIN_BAUD || my_audio_config .achan [0 ].baud > MAX_BAUD ) {
484
+ text_color_set (DW_COLOR_ERROR );
485
+ dw_printf ("Use a more reasonable bit rate in range of %d - %d.\n" , MIN_BAUD , MAX_BAUD );
486
+ exit (EXIT_FAILURE );
487
+ }
488
+
491
489
/*
492
490
* -g option means force g3RUH regardless of speed.
493
491
*/
0 commit comments