Hi all! I need your help for my porting of a source.
I take a source code of LPC214x and I found this:
void
EnterCriticalSection( )
{
VIC_Temp = VICIntEnable; /* Save VICIntEnable */
<span class="Apple-tab-span" style="white-space: pre;"> </span>VICIntEnClr = VIC_Temp; /* Disable Interruptions */
}
void
ExitCriticalSection( )
{
VICIntEnable = VIC_Temp; /* Restore VICIntEnable */
}