Skip to content

Commit 031c937

Browse files
committed
Issue 444 - Command line -x calibrate tones are reversed
1 parent ef573f2 commit 031c937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/direwolf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1053,15 +1053,15 @@ int main (int argc, char *argv[])
10531053
audio_config.achan[x_opt_chan].mark_freq,
10541054
x_opt_chan);
10551055
while (n-- > 0) {
1056-
tone_gen_put_bit(x_opt_chan, 0);
1056+
tone_gen_put_bit(x_opt_chan, 1);
10571057
}
10581058
break;
10591059
case 's': // "Space" tone: -x s
10601060
dw_printf("\nSending space calibration tone (%dHz) on channel %d.\nPress control-C to terminate.\n",
10611061
audio_config.achan[x_opt_chan].space_freq,
10621062
x_opt_chan);
10631063
while (n-- > 0) {
1064-
tone_gen_put_bit(x_opt_chan, 1);
1064+
tone_gen_put_bit(x_opt_chan, 0);
10651065
}
10661066
break;
10671067
case 'p': // Silence - set PTT only: -x p

0 commit comments

Comments
 (0)