We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef573f2 commit 031c937Copy full SHA for 031c937
src/direwolf.c
@@ -1053,15 +1053,15 @@ int main (int argc, char *argv[])
1053
audio_config.achan[x_opt_chan].mark_freq,
1054
x_opt_chan);
1055
while (n-- > 0) {
1056
- tone_gen_put_bit(x_opt_chan, 0);
+ tone_gen_put_bit(x_opt_chan, 1);
1057
}
1058
break;
1059
case 's': // "Space" tone: -x s
1060
dw_printf("\nSending space calibration tone (%dHz) on channel %d.\nPress control-C to terminate.\n",
1061
audio_config.achan[x_opt_chan].space_freq,
1062
1063
1064
- tone_gen_put_bit(x_opt_chan, 1);
+ tone_gen_put_bit(x_opt_chan, 0);
1065
1066
1067
case 'p': // Silence - set PTT only: -x p
0 commit comments