OSA : OS_RI

OS_RI (char)

Not allowed in interrupt

Restore value of GIEx previously saved by OS_DI().

Call allowed:

Not in interrupt

Parameters:

char saved value of GIEx

Returns:

nothing

Example:

void Task (void)
{
    char temp;
    for (;;) {
        /*...*/
        temp = OS_DI();  // Disable interrupts and store previous GIEx value
        /*...*/
        OS_RI(temp);     // Restore previously saved value of GIEx
        /*...*/
    }
}

See also