Skip to content

Commit 3ba464d

Browse files
committed
Add info about layer 2 transmit per channel.
1 parent 88cf0ba commit 3ba464d

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

src/audio.h

+4-7
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,6 @@ struct audio_s {
115115
float recv_ber; /* Receive Bit Error Rate (BER). */
116116
/* Probability of inverting a bit coming out of the modem. */
117117

118-
//int fx25_xmit_enable; /* Enable transmission of FX.25. */
119-
/* See fx25_init.c for explanation of values. */
120-
/* Initially this applies to all channels. */
121-
/* This should probably be per channel. One step at a time. */
122-
/* v1.7 - replaced by layer2_xmit==LAYER2_FX25 */
123-
124118
int fx25_auto_enable; /* Turn on FX.25 for current connected mode session */
125119
/* under poor conditions. */
126120
/* Set to 0 to disable feature. */
@@ -198,7 +192,7 @@ struct audio_s {
198192
/* Might try MFJ-2400 / CCITT v.26 / Bell 201 someday. */
199193
/* No modem. Might want this for DTMF only channel. */
200194

201-
enum layer2_t { LAYER2_AX25 = 0, LAYER2_FX25, LAYER2_IL2P } layer2_xmit;
195+
enum layer2_t { LAYER2_AX25 = 0, LAYER2_FX25, LAYER2_IL2P } layer2_xmit; // Must keep in sync with layer2_tx, below.
202196

203197
// IL2P - New for version 1.7.
204198
// New layer 2 with FEC. Much less overhead than FX.25 but no longer backward compatible.
@@ -405,6 +399,9 @@ struct audio_s {
405399

406400
};
407401

402+
#if DEMOD_C
403+
const static char *layer2_tx[3] = {"AX.25", "FX.25", "IL2P"}; // Must keep in sync with enum layer2_t above.
404+
#endif
408405

409406
#if __WIN32__
410407
#define DEFAULT_ADEVICE "" /* Windows: Empty string = default audio device. */

src/demod.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
*
3232
*---------------------------------------------------------------*/
3333

34+
#define DEMOD_C 1
35+
3436
#include "direwolf.h"
3537

3638
#include <stdlib.h>
@@ -306,6 +308,7 @@ int demod_init (struct audio_s *pa)
306308
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec);
307309
if (save_audio_config_p->achan[chan].decimate != 1)
308310
dw_printf (" / %d", save_audio_config_p->achan[chan].decimate);
311+
dw_printf (", Tx %s", layer2_tx[(int)(save_audio_config_p->achan[chan].layer2_xmit)]);
309312
if (save_audio_config_p->achan[chan].dtmf_decode != DTMF_DECODE_OFF)
310313
dw_printf (", DTMF decoder enabled");
311314
dw_printf (".\n");
@@ -540,7 +543,7 @@ int demod_init (struct audio_s *pa)
540543
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec);
541544
if (save_audio_config_p->achan[chan].decimate != 1)
542545
dw_printf (" / %d", save_audio_config_p->achan[chan].decimate);
543-
546+
dw_printf (", Tx %s", layer2_tx[(int)(save_audio_config_p->achan[chan].layer2_xmit)]);
544547
if (save_audio_config_p->achan[chan].v26_alternative == V26_B)
545548
dw_printf (", compatible with MFJ-2400");
546549
else
@@ -601,6 +604,7 @@ int demod_init (struct audio_s *pa)
601604
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec);
602605
if (save_audio_config_p->achan[chan].decimate != 1)
603606
dw_printf (" / %d", save_audio_config_p->achan[chan].decimate);
607+
dw_printf (", Tx %s", layer2_tx[(int)(save_audio_config_p->achan[chan].layer2_xmit)]);
604608
if (save_audio_config_p->achan[chan].dtmf_decode != DTMF_DECODE_OFF)
605609
dw_printf (", DTMF decoder enabled");
606610
dw_printf (".\n");
@@ -736,6 +740,7 @@ int demod_init (struct audio_s *pa)
736740
save_audio_config_p->achan[chan].profiles,
737741
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec,
738742
save_audio_config_p->achan[chan].upsample);
743+
dw_printf (", Tx %s", layer2_tx[(int)(save_audio_config_p->achan[chan].layer2_xmit)]);
739744
if (save_audio_config_p->achan[chan].dtmf_decode != DTMF_DECODE_OFF)
740745
dw_printf (", DTMF decoder enabled");
741746
dw_printf (".\n");

0 commit comments

Comments
 (0)