mirror of https://github.com/ARMmbed/mbed-os.git
Fix typo that used 16kB for stack.
Intend is to use 2kB for stack, not 16kB, but the divide operand has been forgotten here.pull/4493/head
parent
8232afa53e
commit
2f5b03e876
|
@ -12,7 +12,7 @@
|
|||
#include <mbed_assert.h>
|
||||
|
||||
static osThreadId_t timer_thread_id;
|
||||
static uint64_t timer_thread_stk[2048];
|
||||
static uint64_t timer_thread_stk[2048/sizeof(uint64_t)];
|
||||
static osRtxThread_t timer_thread_tcb;
|
||||
|
||||
static Timer timer;
|
||||
|
|
Loading…
Reference in New Issue