summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/voice_thread.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/voice_thread.c b/apps/voice_thread.c
index 08c7fd6b0b..12fc25df16 100644
--- a/apps/voice_thread.c
+++ b/apps/voice_thread.c
@@ -83,7 +83,11 @@ static unsigned int voice_thread_id = 0;
83#elif defined(CPU_COLDFIRE) 83#elif defined(CPU_COLDFIRE)
84/* ISR uses any available stack - need a bit more room */ 84/* ISR uses any available stack - need a bit more room */
85#define VOICE_STACK_EXTRA 0x400 85#define VOICE_STACK_EXTRA 0x400
86#elif (CONFIG_PLATFORM & PLATFORM_HOSTED)
87/* Needed at least on the Sony NWZ hosted targets, but probably a good idea on all of them */
88#define VOICE_STACK_EXTRA 0x500
86#else 89#else
90#warning "3c0"
87#define VOICE_STACK_EXTRA 0x3c0 91#define VOICE_STACK_EXTRA 0x3c0
88#endif 92#endif
89static long voice_stack[(DEFAULT_STACK_SIZE + VOICE_STACK_EXTRA)/sizeof(long)] 93static long voice_stack[(DEFAULT_STACK_SIZE + VOICE_STACK_EXTRA)/sizeof(long)]