Function Name: isr_1_GetState
********************************************************************************
* Summary:
* Gets the state (enabled, disabled) of the Interrupt.
*
*
* Parameters:
* void.
*
*
* Return:
* 1 if enabled, 0 if disabled.
*
*
*******************************************************************************/
uint8 isr_1_GetState(void)
{
/* Get the state of the general interrupt. */
return (*isr_1_INTC_SET_EN & isr_1__INTC_MASK) ? 1:0;
}