summaryrefslogtreecommitdiff
path: root/apps/screens.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.h')
-rw-r--r--apps/screens.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/screens.h b/apps/screens.h
index 2fa081a272..55b31006ce 100644
--- a/apps/screens.h
+++ b/apps/screens.h
@@ -19,6 +19,8 @@
19#ifndef _SCREENS_H_ 19#ifndef _SCREENS_H_
20#define _SCREENS_H_ 20#define _SCREENS_H_
21 21
22#include "timefuncs.h"
23
22void usb_display_info(void); 24void usb_display_info(void);
23void usb_screen(void); 25void usb_screen(void);
24int charging_screen(void); 26int charging_screen(void);
@@ -35,5 +37,9 @@ void splash(int ticks, /* how long */
35 char *fmt, /* what to say *printf style */ 37 char *fmt, /* what to say *printf style */
36 ...); 38 ...);
37 39
40#ifdef HAVE_RTC
41bool set_time_screen(char* string, struct tm *tm);
42#endif
43
38#endif 44#endif
39 45