aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/main_common.c
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2017-01-07 19:53:43 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2017-02-18 21:00:53 +0100
commitd28467c1253e34114b40ac0cec7e461a8cc270fb (patch)
treeb810aa5e26793752bb838ea5237ba1d36dcb4616 /src/common/main_common.c
parentfee4846c3f505081c37094c29cd21a483c030500 (diff)
SDR: Display IQ data as a plot using 'q' key
Diffstat (limited to 'src/common/main_common.c')
-rw-r--r--src/common/main_common.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/main_common.c b/src/common/main_common.c
index 4359546..7a38bc4 100644
--- a/src/common/main_common.c
+++ b/src/common/main_common.c
@@ -431,8 +431,14 @@ next_char:
goto next_char;
case 'w':
/* toggle display */
+ display_iq_on(0);
display_wave_on(-1);
goto next_char;
+ case 'q':
+ /* toggle display */
+ display_wave_on(0);
+ display_iq_on(-1);
+ goto next_char;
case 'i':
/* dump info */
dump_info();