From b9fff3994041863e940b093b525ce7ee7f4f1209 Mon Sep 17 00:00:00 2001 From: William Miceli Date: Sun, 6 Jun 2021 17:26:24 -0400 Subject: [PATCH] Fixed LED comments --- Telem_Debug/Debug_BlinkyLED-Advanced/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c index c9b0e10..1da9546 100644 --- a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c +++ b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c @@ -19,8 +19,8 @@ int main(void) { io_init(); // Initialize all input/output pins delay(); - P8OUT &= ~LEDY0; // Initially set LEDY0 to High - P8OUT |= LEDY1; // Initially set LEDY1 to Low + P8OUT &= ~LEDY0; // Initially set LEDY0 to Low + P8OUT |= LEDY1; // Initially set LEDY1 to High _EINT(); // Enable global interrupts