Fix menu thread stack overflow
sizeof(menuThreadStack) not matching 0x3000
This commit is contained in:
parent
74a0b2feae
commit
47916b2831
@ -124,7 +124,7 @@ u32 waitCombo(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static MyThread menuThread;
|
static MyThread menuThread;
|
||||||
static u8 ALIGN(8) menuThreadStack[THREAD_STACK_SIZE];
|
static u8 ALIGN(8) menuThreadStack[0x3000];
|
||||||
static u8 batteryLevel = 255;
|
static u8 batteryLevel = 255;
|
||||||
|
|
||||||
MyThread *menuCreateThread(void)
|
MyThread *menuCreateThread(void)
|
||||||
|
Reference in New Issue
Block a user