diff --git a/Telem_Debug/Debug_BlinkyLED-Advanced/interrupts.c b/Telem_Debug/Debug_BlinkyLED-Advanced/interrupts.c index ba30c68..5db50eb 100644 --- a/Telem_Debug/Debug_BlinkyLED-Advanced/interrupts.c +++ b/Telem_Debug/Debug_BlinkyLED-Advanced/interrupts.c @@ -24,8 +24,8 @@ __interrupt void timer_b0(void) if(status_count == 0){ status_count = TELEM_STATUS_COUNT; status_flag = TRUE; - P8OUT &= ~LEDG; // Turn off the green LED - }else{ P8OUT |= LEDG; // Turn on the green LED + }else{ + P8OUT &= ~LEDG; // Turn off the green LED } }