gigabeats: Fix hang on startup caused by a stack overflow
headphone ADC thread stack was slightly too small. Bump it up a bit. (it was _perfectly_ sized for the prior older toolchain+optimization flags...) Change-Id: I2ca67c2b85c54f879892a31e281d7696f893389c
This commit is contained in:
parent
9e15c19891
commit
afec380a0d
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
|
||||
static struct semaphore headphone_wakeup;
|
||||
static unsigned int headphone_thread_id;
|
||||
static unsigned int headphone_stack[176/sizeof(int)]; /* Little stack needed */
|
||||
static unsigned int headphone_stack[200/sizeof(int)]; /* Little stack needed; 184 bytes as of this writing. */
|
||||
static const char * const headphone_thread_name = "headphone";
|
||||
static bool headphones_detect = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue