summaryrefslogtreecommitdiff
path: root/apps/radio/radio.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/radio/radio.c')
-rw-r--r--apps/radio/radio.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/radio/radio.c b/apps/radio/radio.c
index b3540610f1..403d1ae36f 100644
--- a/apps/radio/radio.c
+++ b/apps/radio/radio.c
@@ -279,7 +279,9 @@ void radio_pause(void)
279 } 279 }
280 280
281 tuner_set(RADIO_MUTE, 1); 281 tuner_set(RADIO_MUTE, 1);
282 tuner_set(RADIO_SLEEP, 1); 282 /* For si4700: 2==this is really 'pause'. other tuners treat it
283 * like 'bool'. */
284 tuner_set(RADIO_SLEEP, 2);
283 285
284 radio_status = FMRADIO_PAUSED; 286 radio_status = FMRADIO_PAUSED;
285} /* radio_pause */ 287} /* radio_pause */