Merge pull request #4493 from ARMmbed/fix_timer_stack

Fix typo that used 16kB for stack.
pull/4452/merge
Sam Grove 2017-06-07 21:50:09 -05:00 committed by GitHub
commit 9f4b72d401
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;