mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #4493 from ARMmbed/fix_timer_stack
Fix typo that used 16kB for stack.pull/4452/merge
commit
9f4b72d401
|
@ -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