Fix menu thread stack overflow

sizeof(menuThreadStack) not matching 0x3000
This commit is contained in:
TuxSH
2019-02-21 19:47:35 +01:00
committed by GitHub
parent 74a0b2feae
commit 47916b2831

View File

@@ -124,7 +124,7 @@ u32 waitCombo(void)
}
static MyThread menuThread;
static u8 ALIGN(8) menuThreadStack[THREAD_STACK_SIZE];
static u8 ALIGN(8) menuThreadStack[0x3000];
static u8 batteryLevel = 255;
MyThread *menuCreateThread(void)