diff --git a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c index b08fdff..d9e2ce2 100644 --- a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c +++ b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c @@ -26,7 +26,7 @@ int main(void) { P8OUT &= ~LEDY0; // Initially set LEDY0 to High P8OUT |= LEDY1; // Initially set LEDY1 to Low - _EINT(); //enable global interrupts + _EINT(); // Enable global interrupts volatile int i; while(1) diff --git a/Telem_Debug/Debug_BlinkyLED-Basic/main.c b/Telem_Debug/Debug_BlinkyLED-Basic/main.c index b3fc6af..6beac45 100644 --- a/Telem_Debug/Debug_BlinkyLED-Basic/main.c +++ b/Telem_Debug/Debug_BlinkyLED-Basic/main.c @@ -15,7 +15,7 @@ int main(void) { P8OUT |= LEDG; // Turn on permanently the green LED P8OUT &= ~(LEDY0 | LEDY1); // Initially set both yellow LEDs to Low - _EINT(); //enable global interrupts + _EINT(); // Enable global interrupts volatile int i; while(1)