blob: 40db4e3bf85605197e72324cf755fe93aca5f96c [file] [log] [blame]
/*
* ======== idle ========
*/
void idle(void)
{
__bis_SR_register(LPM0_bits + GIE); /* Enter LPM0, interrupts enabled */
}
/*
* ======== USCI0RX_ISR ========
*/
__interrupt void USCI0RX_ISR(void)
{
char c;
while (!(IFG2 & UCA0TXIFG)) { /* USCI_A0 TX buffer ready? */
;
}
c = UCA0RXBUF;
if (c == 'W') {
__bic_SR_register_on_exit(LPM0_bits); /* Clear LPM0 bits from 0(SR) */
}
if (SysUart_inputFxn != NULL) {
SysUart_inputFxn(&c);
}
}
__asm("\t.global USCI0RX_ISR");
__asm("\t.sect \".usci_rx\"");
__asm("\t.align 2");
__asm("_USCI0_rx_vector:\n\t.field USCI0RX_ISR, 16");