summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.h2
-rw-r--r--apps/gui/statusbar.c14
-rw-r--r--apps/gui/statusbar.h4
-rw-r--r--apps/main.c2
-rw-r--r--apps/main_menu.c2
-rw-r--r--apps/misc.c6
-rw-r--r--apps/misc.h2
-rw-r--r--apps/plugins/SOURCES4
-rw-r--r--apps/plugins/battery_test.c2
-rw-r--r--apps/plugins/bounce.c8
-rw-r--r--apps/plugins/calendar.c6
-rw-r--r--apps/plugins/clock.c2
-rw-r--r--apps/recorder/icons.h2
-rw-r--r--apps/recorder/recording.c2
-rw-r--r--apps/screens.c4
-rw-r--r--apps/screens.h2
-rw-r--r--apps/settings_menu.c6
-rw-r--r--apps/status.c2
18 files changed, 36 insertions, 36 deletions
diff --git a/apps/debug_menu.h b/apps/debug_menu.h
index 4b2c193662..e3f2eb4ebd 100644
--- a/apps/debug_menu.h
+++ b/apps/debug_menu.h
@@ -23,7 +23,7 @@ bool debug_menu(void);
23 23
24#ifndef SIMULATOR 24#ifndef SIMULATOR
25extern bool dbg_ports(void); 25extern bool dbg_ports(void);
26#ifdef HAVE_RTC 26#ifdef CONFIG_RTC
27extern bool dbg_rtc(void); 27extern bool dbg_rtc(void);
28#endif 28#endif
29#endif 29#endif
diff --git a/apps/gui/statusbar.c b/apps/gui/statusbar.c
index d336d8ad0e..fda54a610e 100644
--- a/apps/gui/statusbar.c
+++ b/apps/gui/statusbar.c
@@ -112,9 +112,9 @@ void gui_statusbar_init(struct gui_statusbar * bar)
112void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw) 112void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw)
113{ 113{
114 struct screen * display = bar->display; 114 struct screen * display = bar->display;
115#ifdef HAVE_RTC 115#ifdef CONFIG_RTC
116 struct tm* tm; /* For Time */ 116 struct tm* tm; /* For Time */
117#endif /* HAVE_RTC */ 117#endif /* CONFIG_RTC */
118 118
119#ifdef HAVE_LCD_CHARCELLS 119#ifdef HAVE_LCD_CHARCELLS
120 (void)force_redraw; /* players always "redraw" */ 120 (void)force_redraw; /* players always "redraw" */
@@ -126,11 +126,11 @@ void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw)
126 bar->info.battery_safe = battery_level_safe(); 126 bar->info.battery_safe = battery_level_safe();
127 127
128#ifdef HAVE_LCD_BITMAP 128#ifdef HAVE_LCD_BITMAP
129#ifdef HAVE_RTC 129#ifdef CONFIG_RTC
130 tm = get_time(); 130 tm = get_time();
131 bar->info.hour = tm->tm_hour; 131 bar->info.hour = tm->tm_hour;
132 bar->info.minute = tm->tm_min; 132 bar->info.minute = tm->tm_min;
133#endif /* HAVE_RTC */ 133#endif /* CONFIG_RTC */
134 134
135 bar->info.shuffle = global_settings.playlist_shuffle; 135 bar->info.shuffle = global_settings.playlist_shuffle;
136#ifdef HAS_BUTTON_HOLD 136#ifdef HAS_BUTTON_HOLD
@@ -257,9 +257,9 @@ void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw)
257 if (bar->info.keylockremote) 257 if (bar->info.keylockremote)
258 gui_statusbar_icon_lock_remote(display); 258 gui_statusbar_icon_lock_remote(display);
259#endif 259#endif
260#ifdef HAVE_RTC 260#ifdef CONFIG_RTC
261 gui_statusbar_time(display, bar->info.hour, bar->info.minute); 261 gui_statusbar_time(display, bar->info.hour, bar->info.minute);
262#endif /* HAVE_RTC */ 262#endif /* CONFIG_RTC */
263#if (CONFIG_LED == LED_VIRTUAL) || defined(HAVE_REMOTE_LCD) 263#if (CONFIG_LED == LED_VIRTUAL) || defined(HAVE_REMOTE_LCD)
264 if(!display->has_disk_led && bar->info.led) 264 if(!display->has_disk_led && bar->info.led)
265 gui_statusbar_led(display); 265 gui_statusbar_led(display);
@@ -482,7 +482,7 @@ void gui_statusbar_led(struct screen * display)
482} 482}
483#endif 483#endif
484 484
485#ifdef HAVE_RTC 485#ifdef CONFIG_RTC
486/* 486/*
487 * Print time to status bar 487 * Print time to status bar
488 */ 488 */
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h
index 62f6b90820..6b8e49a838 100644
--- a/apps/gui/statusbar.h
+++ b/apps/gui/statusbar.h
@@ -32,7 +32,7 @@
32struct status_info { 32struct status_info {
33 int battlevel; 33 int battlevel;
34 int volume; 34 int volume;
35#ifdef HAVE_RTC 35#ifdef CONFIG_RTC
36 int hour; 36 int hour;
37 int minute; 37 int minute;
38#endif 38#endif
@@ -111,7 +111,7 @@ void gui_statusbar_icon_lock_remote(struct screen * display);
111void gui_statusbar_led(struct screen * display); 111void gui_statusbar_led(struct screen * display);
112 112
113 113
114#ifdef HAVE_RTC 114#ifdef CONFIG_RTC
115void gui_statusbar_time(struct screen * display, int hour, int minute); 115void gui_statusbar_time(struct screen * display, int hour, int minute);
116#endif 116#endif
117 117
diff --git a/apps/main.c b/apps/main.c
index 94d6f70577..a0cab20dd7 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -226,7 +226,7 @@ void init(void)
226 226
227 i2c_init(); 227 i2c_init();
228 228
229#ifdef HAVE_RTC 229#ifdef CONFIG_RTC
230 rtc_init(); 230 rtc_init();
231#endif 231#endif
232#ifdef HAVE_RTC_RAM 232#ifdef HAVE_RTC_RAM
diff --git a/apps/main_menu.c b/apps/main_menu.c
index 262dd61a20..8bdb6fec2e 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -125,7 +125,7 @@ bool show_info(void)
125 output_dyn_value(NULL, 0, free, kbyte_units, true); /* NULL == talk */ 125 output_dyn_value(NULL, 0, free, kbyte_units, true); /* NULL == talk */
126#endif 126#endif
127 127
128#ifdef HAVE_RTC 128#ifdef CONFIG_RTC
129 { 129 {
130 struct tm* tm = get_time(); 130 struct tm* tm = get_time();
131 talk_id(VOICE_CURRENT_TIME, true); 131 talk_id(VOICE_CURRENT_TIME, true);
diff --git a/apps/misc.c b/apps/misc.c
index 6f55b6f6b5..c40eac0def 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -154,7 +154,7 @@ char *create_numbered_filename(char *buffer, const char *path,
154 return buffer; 154 return buffer;
155} 155}
156 156
157#ifdef HAVE_RTC 157#ifdef CONFIG_RTC
158/* Create a filename with a date+time part. 158/* Create a filename with a date+time part.
159 It is allowed that buffer and path point to the same memory location, 159 It is allowed that buffer and path point to the same memory location,
160 saving a strcpy(). Path must always be given without trailing slash. */ 160 saving a strcpy(). Path must always be given without trailing slash. */
@@ -175,7 +175,7 @@ char *create_datetime_filename(char *buffer, const char *path,
175 175
176 return buffer; 176 return buffer;
177} 177}
178#endif /* HAVE_RTC */ 178#endif /* CONFIG_RTC */
179 179
180/* Read (up to) a line of text from fd into buffer and return number of bytes 180/* Read (up to) a line of text from fd into buffer and return number of bytes
181 * read (which may be larger than the number of bytes stored in buffer). If 181 * read (which may be larger than the number of bytes stored in buffer). If
@@ -300,7 +300,7 @@ void screen_dump(void)
300 static unsigned short line_block[BMP_LINESIZE/2]; 300 static unsigned short line_block[BMP_LINESIZE/2];
301#endif 301#endif
302 302
303#ifdef HAVE_RTC 303#ifdef CONFIG_RTC
304 create_datetime_filename(filename, "", "dump ", ".bmp"); 304 create_datetime_filename(filename, "", "dump ", ".bmp");
305#else 305#else
306 create_numbered_filename(filename, "", "dump_", ".bmp", 4); 306 create_numbered_filename(filename, "", "dump_", ".bmp", 4);
diff --git a/apps/misc.h b/apps/misc.h
index 5af2568f7b..c5a89901ee 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -30,7 +30,7 @@ void output_dyn_value(char *buf, int buf_size, int value,
30char *create_numbered_filename(char *buffer, const char *path, 30char *create_numbered_filename(char *buffer, const char *path,
31 const char *prefix, const char *suffix, 31 const char *prefix, const char *suffix,
32 int numberlen); 32 int numberlen);
33#ifdef HAVE_RTC 33#ifdef CONFIG_RTC
34char *create_datetime_filename(char *buffer, const char *path, 34char *create_datetime_filename(char *buffer, const char *path,
35 const char *prefix, const char *suffix); 35 const char *prefix, const char *suffix);
36#endif 36#endif
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index b335a068f4..c2ddc3d42b 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -56,10 +56,10 @@ video.c
56#endif 56#endif
57vu_meter.c 57vu_meter.c
58 58
59#ifdef HAVE_RTC /* Recorder models only */ 59#ifdef CONFIG_RTC /* Recorder models only */
60calendar.c 60calendar.c
61clock.c 61clock.c
62#endif /* #ifdef HAVE_RTC */ 62#endif /* #ifdef CONFIG_RTC */
63 63
64#if CONFIG_KEYPAD != ONDIO_PAD 64#if CONFIG_KEYPAD != ONDIO_PAD
65/* gradually bring in the ones not working yet */ 65/* gradually bring in the ones not working yet */
diff --git a/apps/plugins/battery_test.c b/apps/plugins/battery_test.c
index adb1a2d86e..31ae801934 100644
--- a/apps/plugins/battery_test.c
+++ b/apps/plugins/battery_test.c
@@ -87,7 +87,7 @@ enum plugin_status loop(void)
87 rb->splash(HZ, true, "Failed creating /battery.log"); 87 rb->splash(HZ, true, "Failed creating /battery.log");
88 break; 88 break;
89 } 89 }
90#ifdef HAVE_RTC 90#ifdef CONFIG_RTC
91 t = rb->get_time(); 91 t = rb->get_time();
92#else 92#else
93 { 93 {
diff --git a/apps/plugins/bounce.c b/apps/plugins/bounce.c
index 3a44a4cc46..487965a4cf 100644
--- a/apps/plugins/bounce.c
+++ b/apps/plugins/bounce.c
@@ -230,7 +230,7 @@ struct counter values[]={
230 {"ydist", -6}, 230 {"ydist", -6},
231}; 231};
232 232
233#ifdef HAVE_RTC 233#ifdef CONFIG_RTC
234static unsigned char yminute[]={ 234static unsigned char yminute[]={
23553,53,52,52,51,50,49,47,46,44,42,40,38,36,34,32,29,27,25,23,21,19,17,16,14,13,12,11,11,10,10,10,11,11,12,13,14,16,17,19,21,23,25,27,29,31,34,36,38,40,42,44,46,47,49,50,51,52,52,53, 23553,53,52,52,51,50,49,47,46,44,42,40,38,36,34,32,29,27,25,23,21,19,17,16,14,13,12,11,11,10,10,10,11,11,12,13,14,16,17,19,21,23,25,27,29,31,34,36,38,40,42,44,46,47,49,50,51,52,52,53,
236}; 236};
@@ -277,7 +277,7 @@ static void addclock(void)
277 yminute[(i+1)%60]); 277 yminute[(i+1)%60]);
278 } 278 }
279} 279}
280#endif /* HAVE_RTC */ 280#endif /* CONFIG_RTC */
281 281
282#define DRAW_WIDTH (LCD_WIDTH + LETTER_WIDTH*2) 282#define DRAW_WIDTH (LCD_WIDTH + LETTER_WIDTH*2)
283 283
@@ -330,7 +330,7 @@ static int scrollit(void)
330 yy += YADD; 330 yy += YADD;
331 xx+= DRAW_WIDTH/LETTERS_ON_SCREEN; 331 xx+= DRAW_WIDTH/LETTERS_ON_SCREEN;
332 } 332 }
333#ifdef HAVE_RTC 333#ifdef CONFIG_RTC
334 addclock(); 334 addclock();
335#endif 335#endif
336 rb->lcd_update(); 336 rb->lcd_update();
@@ -385,7 +385,7 @@ static int loopit(void)
385 x+= speed[xsanke&15] + values[NUM_XADD].num; 385 x+= speed[xsanke&15] + values[NUM_XADD].num;
386 386
387 rb->lcd_clear_display(); 387 rb->lcd_clear_display();
388#ifdef HAVE_RTC 388#ifdef CONFIG_RTC
389 addclock(); 389 addclock();
390#endif 390#endif
391 if(timeout) { 391 if(timeout) {
diff --git a/apps/plugins/calendar.c b/apps/plugins/calendar.c
index df23afd721..5cb04b565c 100644
--- a/apps/plugins/calendar.c
+++ b/apps/plugins/calendar.c
@@ -19,7 +19,7 @@
19 ****************************************************************************/ 19 ****************************************************************************/
20#include "plugin.h" 20#include "plugin.h"
21 21
22#if defined(HAVE_LCD_BITMAP) && defined(HAVE_RTC) 22#if defined(HAVE_LCD_BITMAP) && defined(CONFIG_RTC)
23 23
24#include <timefuncs.h> 24#include <timefuncs.h>
25 25
@@ -69,7 +69,7 @@ static int calc_weekday( struct shown *shown )
69static void calendar_init(struct today *today, struct shown *shown) 69static void calendar_init(struct today *today, struct shown *shown)
70{ 70{
71 int w,h; 71 int w,h;
72#ifdef HAVE_RTC 72#ifdef CONFIG_RTC
73 struct tm *tm; 73 struct tm *tm;
74#else 74#else
75 (void)today; 75 (void)today;
@@ -81,7 +81,7 @@ static void calendar_init(struct today *today, struct shown *shown)
81 use_system_font = true; 81 use_system_font = true;
82 } 82 }
83 rb->lcd_clear_display(); 83 rb->lcd_clear_display();
84#ifdef HAVE_RTC 84#ifdef CONFIG_RTC
85 tm = rb->get_time(); 85 tm = rb->get_time();
86 today->mon = tm->tm_mon +1; 86 today->mon = tm->tm_mon +1;
87 today->year = 2000+tm->tm_year%100; 87 today->year = 2000+tm->tm_year%100;
diff --git a/apps/plugins/clock.c b/apps/plugins/clock.c
index 6b06b1a74e..9c940dc7c3 100644
--- a/apps/plugins/clock.c
+++ b/apps/plugins/clock.c
@@ -78,7 +78,7 @@ Original release, featuring analog / digital modes and a few options.
78#include "plugin.h" 78#include "plugin.h"
79#include "time.h" 79#include "time.h"
80 80
81#if defined(HAVE_LCD_BITMAP) && defined(HAVE_RTC) 81#if defined(HAVE_LCD_BITMAP) && defined(CONFIG_RTC)
82 82
83#define CLOCK_VERSION "2.60" 83#define CLOCK_VERSION "2.60"
84 84
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index a21b801cb9..72dc70a95c 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -122,7 +122,7 @@ extern void statusbar_icon_play_state(int state);
122extern void statusbar_icon_play_mode(int mode); 122extern void statusbar_icon_play_mode(int mode);
123extern void statusbar_icon_shuffle(void); 123extern void statusbar_icon_shuffle(void);
124extern void statusbar_icon_lock(void); 124extern void statusbar_icon_lock(void);
125#ifdef HAVE_RTC 125#ifdef CONFIG_RTC
126extern void statusbar_time(int hour, int minute); 126extern void statusbar_time(int hour, int minute);
127#endif 127#endif
128#if CONFIG_LED == LED_VIRTUAL 128#if CONFIG_LED == LED_VIRTUAL
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index c7da2bbb9f..4ca4bcb925 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -210,7 +210,7 @@ char *rec_create_filename(char *buffer)
210 else 210 else
211 strncpy(buffer, rec_base_directory, MAX_PATH); 211 strncpy(buffer, rec_base_directory, MAX_PATH);
212 212
213#ifdef HAVE_RTC 213#ifdef CONFIG_RTC
214 create_datetime_filename(buffer, buffer, "R", REC_FILE_ENDING); 214 create_datetime_filename(buffer, buffer, "R", REC_FILE_ENDING);
215#else 215#else
216 create_numbered_filename(buffer, buffer, "rec_", REC_FILE_ENDING, 4); 216 create_numbered_filename(buffer, buffer, "rec_", REC_FILE_ENDING, 4);
diff --git a/apps/screens.c b/apps/screens.c
index 8bf18dc6c6..d8bfb56500 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -624,7 +624,7 @@ void charging_splash(void)
624#endif 624#endif
625 625
626 626
627#if defined(HAVE_LCD_BITMAP) && defined (HAVE_RTC) 627#if defined(HAVE_LCD_BITMAP) && defined (CONFIG_RTC)
628 628
629/* little helper function for voice output */ 629/* little helper function for voice output */
630static void say_time(int cursorpos, const struct tm *tm) 630static void say_time(int cursorpos, const struct tm *tm)
@@ -923,7 +923,7 @@ bool set_time_screen(const char* string, struct tm *tm)
923 lcd_set_drawmode(lastmode); 923 lcd_set_drawmode(lastmode);
924 return false; 924 return false;
925} 925}
926#endif /* defined(HAVE_LCD_BITMAP) && defined (HAVE_RTC) */ 926#endif /* defined(HAVE_LCD_BITMAP) && defined (CONFIG_RTC) */
927 927
928#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF) 928#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
929bool shutdown_screen(void) 929bool shutdown_screen(void)
diff --git a/apps/screens.h b/apps/screens.h
index ea5e9440c8..c8e5c320f5 100644
--- a/apps/screens.h
+++ b/apps/screens.h
@@ -41,7 +41,7 @@ extern bool quick_screen_f3(int button_enter);
41#endif 41#endif
42extern bool quick_screen_quick(int button_enter); 42extern bool quick_screen_quick(int button_enter);
43 43
44#ifdef HAVE_RTC 44#ifdef CONFIG_RTC
45bool set_time_screen(const char* string, struct tm *tm); 45bool set_time_screen(const char* string, struct tm *tm);
46#endif 46#endif
47 47
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 3553c01f09..88b246fec4 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -829,7 +829,7 @@ static bool battery_type(void)
829#endif 829#endif
830#endif 830#endif
831 831
832#ifdef HAVE_RTC 832#ifdef CONFIG_RTC
833static bool timedate_set(void) 833static bool timedate_set(void)
834{ 834{
835 struct tm tm; 835 struct tm tm;
@@ -1682,7 +1682,7 @@ static bool disk_settings_menu(void)
1682} 1682}
1683#endif /* !HAVE_MMC */ 1683#endif /* !HAVE_MMC */
1684 1684
1685#ifdef HAVE_RTC 1685#ifdef CONFIG_RTC
1686static bool time_settings_menu(void) 1686static bool time_settings_menu(void)
1687{ 1687{
1688 int m; 1688 int m;
@@ -1748,7 +1748,7 @@ static bool system_settings_menu(void)
1748#ifndef HAVE_MMC 1748#ifndef HAVE_MMC
1749 { ID2P(LANG_DISK_MENU), disk_settings_menu }, 1749 { ID2P(LANG_DISK_MENU), disk_settings_menu },
1750#endif 1750#endif
1751#ifdef HAVE_RTC 1751#ifdef CONFIG_RTC
1752 { ID2P(LANG_TIME_MENU), time_settings_menu }, 1752 { ID2P(LANG_TIME_MENU), time_settings_menu },
1753#endif 1753#endif
1754 { ID2P(LANG_POWEROFF_IDLE), poweroff_idle_timer }, 1754 { ID2P(LANG_POWEROFF_IDLE), poweroff_idle_timer },
diff --git a/apps/status.c b/apps/status.c
index 296b7aaf0e..5c5fb3eaa6 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -29,7 +29,7 @@
29#include "gwps.h" 29#include "gwps.h"
30#include "abrepeat.h" 30#include "abrepeat.h"
31#include "statusbar.h" 31#include "statusbar.h"
32#ifdef HAVE_RTC 32#ifdef CONFIG_RTC
33#include "timefuncs.h" 33#include "timefuncs.h"
34#endif 34#endif
35#ifdef HAVE_LCD_BITMAP 35#ifdef HAVE_LCD_BITMAP