voice: Increase voice stack size a bit for MIPS by 256 bytes.
MIPS is stack hungry due to the large number of GPRs we have to save. With this extra headroom we now _idle_ at 75% stack use of a 2K stack! Change-Id: I197b730c817d948230010f18dba60747088487ba
This commit is contained in:
parent
5dd4c00697
commit
c06766bbeb
1 changed files with 4 additions and 1 deletions
|
@ -77,7 +77,10 @@
|
|||
|
||||
/* Voice thread variables */
|
||||
static unsigned int voice_thread_id = 0;
|
||||
#ifdef CPU_COLDFIRE
|
||||
#if defined(CPU_MIPS)
|
||||
/* MIPS is stack-hungry */
|
||||
#define VOICE_STACK_EXTRA 0x500
|
||||
#elif defined(CPU_COLDFIRE)
|
||||
/* ISR uses any available stack - need a bit more room */
|
||||
#define VOICE_STACK_EXTRA 0x400
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue