summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/icons.h2
-rw-r--r--apps/recorder/recording.c14
2 files changed, 8 insertions, 8 deletions
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 668b5ca3ce..729e0328dc 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -173,7 +173,7 @@ extern void statusbar_icon_lock(void);
173#ifdef CONFIG_RTC 173#ifdef CONFIG_RTC
174extern void statusbar_time(int hour, int minute); 174extern void statusbar_time(int hour, int minute);
175#endif 175#endif
176#if CONFIG_LED == LED_VIRTUAL 176#if defined(CONFIG_LED) && (CONFIG_LED == LED_VIRTUAL)
177extern void statusbar_led(void); 177extern void statusbar_led(void);
178#endif 178#endif
179 179
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index eb6f9b20ca..967df2826a 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -773,7 +773,7 @@ bool recording_screen(bool no_source)
773 FMRADIO_OFF : get_radio_status(); 773 FMRADIO_OFF : get_radio_status();
774#endif 774#endif
775 int talk_menu = global_settings.talk_menu; 775 int talk_menu = global_settings.talk_menu;
776#if CONFIG_LED == LED_REAL 776#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
777 bool led_state = false; 777 bool led_state = false;
778 int led_countdown = 2; 778 int led_countdown = 2;
779#endif 779#endif
@@ -803,7 +803,7 @@ bool recording_screen(bool no_source)
803 803
804 in_screen = true; 804 in_screen = true;
805 cursor = 0; 805 cursor = 0;
806#if (CONFIG_LED == LED_REAL) && !defined(SIMULATOR) 806#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL) && !defined(SIMULATOR)
807 ata_set_led_enabled(false); 807 ata_set_led_enabled(false);
808#endif 808#endif
809 809
@@ -876,7 +876,7 @@ bool recording_screen(bool no_source)
876 { 876 {
877 audio_stat = audio_status(); 877 audio_stat = audio_status();
878 878
879#if CONFIG_LED == LED_REAL 879#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
880 880
881 /* 881 /*
882 * Flash the LED while waiting to record. Turn it on while 882 * Flash the LED while waiting to record. Turn it on while
@@ -1188,7 +1188,7 @@ bool recording_screen(bool no_source)
1188 const int prev_rec_source = global_settings.rec_source; 1188 const int prev_rec_source = global_settings.rec_source;
1189#endif 1189#endif
1190 1190
1191#if CONFIG_LED == LED_REAL 1191#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
1192 /* led is restored at begin of loop / end of function */ 1192 /* led is restored at begin of loop / end of function */
1193 led(false); 1193 led(false);
1194#endif 1194#endif
@@ -1251,7 +1251,7 @@ bool recording_screen(bool no_source)
1251 case ACTION_REC_F2: 1251 case ACTION_REC_F2:
1252 if(audio_stat != AUDIO_STATUS_RECORD) 1252 if(audio_stat != AUDIO_STATUS_RECORD)
1253 { 1253 {
1254#if CONFIG_LED == LED_REAL 1254#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
1255 /* led is restored at begin of loop / end of function */ 1255 /* led is restored at begin of loop / end of function */
1256 led(false); 1256 led(false);
1257#endif 1257#endif
@@ -1275,7 +1275,7 @@ bool recording_screen(bool no_source)
1275 { 1275 {
1276 if(audio_stat != AUDIO_STATUS_RECORD) 1276 if(audio_stat != AUDIO_STATUS_RECORD)
1277 { 1277 {
1278#if CONFIG_LED == LED_REAL 1278#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
1279 /* led is restored at begin of loop / end of function */ 1279 /* led is restored at begin of loop / end of function */
1280 led(false); 1280 led(false);
1281#endif 1281#endif
@@ -1780,7 +1780,7 @@ bool recording_screen(bool no_source)
1780 if (have_recorded) 1780 if (have_recorded)
1781 reload_directory(); 1781 reload_directory();
1782 1782
1783#if (CONFIG_LED == LED_REAL) && !defined(SIMULATOR) 1783#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL) && !defined(SIMULATOR)
1784 ata_set_led_enabled(true); 1784 ata_set_led_enabled(true);
1785#endif 1785#endif
1786 return been_in_usb_mode; 1786 return been_in_usb_mode;