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
Seppo Takalo 2017-06-07 15:35:56 +03:00
parent 8232afa53e
commit 2f5b03e876
1 changed files with 1 additions and 1 deletions

View File

@ -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;