Skip to content
Snippets Groups Projects
Commit e3a8a585 authored by Federico's avatar Federico
Browse files

Added IRQportableFinishKernelStartup() to efm32 arch

parent 3ce46e4c
No related branches found
No related tags found
2 merge requests!40Update to Miosix 2.7,!17Draft: Improved miosix build system and fixed cmake scripts
......@@ -215,6 +215,10 @@ void IRQportableStartKernel()
//since there's no way to stop the sheduler, but we need to save it anyway.
unsigned int s_ctxsave[miosix::CTXSAVE_SIZE];
ctxsave=s_ctxsave;//make global ctxsave point to it
}
void IRQportableFinishKernelStartup()
{
//Note, we can't use enableInterrupts() now since the call is not mathced
//by a call to disableInterrupts()
__enable_fault_irq();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment