summaryrefslogtreecommitdiff
path: root/apps/talk.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/talk.h')
-rw-r--r--apps/talk.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/talk.h b/apps/talk.h
index a939c1f3d1..0dea8d6b18 100644
--- a/apps/talk.h
+++ b/apps/talk.h
@@ -80,9 +80,11 @@ void talk_shutup(void); /* Interrupt voice, as when enqueue is false */
80#if CONFIG_RTC 80#if CONFIG_RTC
81/* this is in talk.c which isnt compiled for hwcodec simulator */ 81/* this is in talk.c which isnt compiled for hwcodec simulator */
82#if !defined(SIMULATOR) || CONFIG_CODEC == SWCODEC 82#if !defined(SIMULATOR) || CONFIG_CODEC == SWCODEC
83void talk_date_time(struct tm *time, bool speak_current_time_string); 83void talk_time(struct tm *tm, bool enqueue);
84void talk_date(struct tm *tm, bool enqueue);
84#else 85#else
85#define talk_date_time(t, s) 86#define talk_date(t, e)
87#define talk_time(t, e)
86#endif 88#endif
87#endif /* CONFIG_RTC */ 89#endif /* CONFIG_RTC */
88 90