Skip to content
Snippets Groups Projects
Commit 1456fa1c authored by Phillip Raffeck's avatar Phillip Raffeck
Browse files

arch:armv7: adjust idle task stack size

parent 26cac60c
No related branches found
No related tags found
No related merge requests found
......@@ -17,10 +17,10 @@ idle_loop_again:
goto idle_loop_again;
}
namespace arch {
static char __attribute__((aligned(4096))) idlestack[4096];
static char __attribute__((aligned(4096))) idlestack[1024];
static void* idle_stack_pointer;
TCB Dispatcher::m_idle(idle_loop,
idlestack, idle_stack_pointer, 4096);
idlestack, idle_stack_pointer, 1024);
os::scheduler::Task Dispatcher::IdleTask(0,0,true,Dispatcher::m_idle);
extern TCB *const OS_tcbs[];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment