From ca5c5a5ae99f13ec1c4210539583f64f45014c7d Mon Sep 17 00:00:00 2001 From: William Miceli Date: Mon, 31 May 2021 15:48:27 -0400 Subject: [PATCH] Minor fix to comments --- Telem_Debug/Debug_BlinkyLED-Advanced/main.c | 2 +- Telem_Debug/Debug_BlinkyLED-Basic/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)