From 86fc384f0c64973e29ff3162179dd7181d83b0ed Mon Sep 17 00:00:00 2001 From: William Miceli Date: Tue, 25 May 2021 14:49:00 -0400 Subject: [PATCH] Added variable declaration --- Telem_Debug/Debug_BlinkyLED-Advanced/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c index 7f8d70b..b0a9aab 100644 --- a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c +++ b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c @@ -30,6 +30,7 @@ int main(void) { _EINT(); //enable global interrupts + volatile int i; while(1) { P8OUT ^= LEDY0 | LEDY1; // Toggle both yellow LEDs