summaryrefslogtreecommitdiff
path: root/apps/talk.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2019-02-03 20:12:50 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2019-07-20 08:48:35 +0200
commit55eb1c54ebe33faa8b1eb8c527d5644961ca78dc (patch)
tree81b5a4f89cfc867bc73901c7cccffc89baf3c3ff /apps/talk.c
parent9c17734394177791d1101e31aed7537c81e610b6 (diff)
downloadrockbox-55eb1c54ebe33faa8b1eb8c527d5644961ca78dc.tar.gz
rockbox-55eb1c54ebe33faa8b1eb8c527d5644961ca78dc.zip
FS#7704 - Talk support for plugins
Original patch by Mario Lang Heavily updated by Igor Poretsky Further updated by myself This patch breaks binary API compatibility by placing the new functions where they make the most logical sense. IMO this is the better approach to take given the scope of the changes needed for talk support. Since binary API is changing, the patch also moves some other functions around to more logical locations. As well as voice support in plugins, this patch voice-enables several simple plugins. There will be follow-up patches for many plugins that build on this one. Change-Id: I18070c06e77e8a3c016c2eb6b6c5dbe6633b9b54
Diffstat (limited to 'apps/talk.c')
-rw-r--r--apps/talk.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/talk.c b/apps/talk.c
index de564c0ff0..aa79dd1b33 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -1540,7 +1540,6 @@ void talk_setting(const void *global_settings_variable)
1540} 1540}
1541 1541
1542 1542
1543#if CONFIG_RTC
1544void talk_date(const struct tm *tm, bool enqueue) 1543void talk_date(const struct tm *tm, bool enqueue)
1545{ 1544{
1546 talk_id(LANG_MONTH_JANUARY + tm->tm_mon, enqueue); 1545 talk_id(LANG_MONTH_JANUARY + tm->tm_mon, enqueue);
@@ -1595,8 +1594,6 @@ void talk_time(const struct tm *tm, bool enqueue)
1595 } 1594 }
1596} 1595}
1597 1596
1598#endif /* CONFIG_RTC */
1599
1600bool talk_get_debug_data(struct talk_debug_data *data) 1597bool talk_get_debug_data(struct talk_debug_data *data)
1601{ 1598{
1602 char* p_lang = DEFAULT_VOICE_LANG; /* default */ 1599 char* p_lang = DEFAULT_VOICE_LANG; /* default */