summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/radio/radio.c1
-rw-r--r--firmware/target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c1
-rw-r--r--firmware/target/arm/imx233/system-imx233.c3
3 files changed, 3 insertions, 2 deletions
diff --git a/apps/radio/radio.c b/apps/radio/radio.c
index 126ea93390..d1a3e588d8 100644
--- a/apps/radio/radio.c
+++ b/apps/radio/radio.c
@@ -413,7 +413,6 @@ void radio_screen(void)
413 413
414#endif /* CONFIG_CODEC != SWCODEC */ 414#endif /* CONFIG_CODEC != SWCODEC */
415#endif /* ndef SIMULATOR */ 415#endif /* ndef SIMULATOR */
416
417 /* turn on radio */ 416 /* turn on radio */
418#if CONFIG_CODEC == SWCODEC 417#if CONFIG_CODEC == SWCODEC
419 /* This should be done before touching audio settings */ 418 /* This should be done before touching audio settings */
diff --git a/firmware/target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c b/firmware/target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c
index 5cda13e2bb..bf06abe311 100644
--- a/firmware/target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c
+++ b/firmware/target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c
@@ -33,6 +33,7 @@ bool tuner_power(bool enable)
33 { 33 {
34 fmradio_i2c_enable(enable); 34 fmradio_i2c_enable(enable);
35 /* CE is B029 (active high) */ 35 /* CE is B029 (active high) */
36 imx233_set_pin_drive_strength(0, 29, PINCTRL_DRIVE_4mA);
36 imx233_enable_gpio_output(0, 29, enable); 37 imx233_enable_gpio_output(0, 29, enable);
37 imx233_set_gpio_output(0, 29, enable); 38 imx233_set_gpio_output(0, 29, enable);
38 tuner_enable = enable; 39 tuner_enable = enable;
diff --git a/firmware/target/arm/imx233/system-imx233.c b/firmware/target/arm/imx233/system-imx233.c
index 34a8a8e326..a97cf198c8 100644
--- a/firmware/target/arm/imx233/system-imx233.c
+++ b/firmware/target/arm/imx233/system-imx233.c
@@ -139,8 +139,9 @@ void system_reboot(void)
139void system_exception_wait(void) 139void system_exception_wait(void)
140{ 140{
141 /* make sure lcd and backlight are on */ 141 /* make sure lcd and backlight are on */
142 lcd_update();
142 _backlight_on(); 143 _backlight_on();
143 _backlight_set_brightness(100); 144 _backlight_set_brightness(DEFAULT_BRIGHTNESS_SETTING);
144 /* wait until button release (if a button is pressed) */ 145 /* wait until button release (if a button is pressed) */
145 while(button_read_device()); 146 while(button_read_device());
146 /* then wait until next button press */ 147 /* then wait until next button press */