diff --git a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c index e586b81..7f8d70b 100644 --- a/Telem_Debug/Debug_BlinkyLED-Advanced/main.c +++ b/Telem_Debug/Debug_BlinkyLED-Advanced/main.c @@ -33,6 +33,8 @@ int main(void) { while(1) { P8OUT ^= LEDY0 | LEDY1; // Toggle both yellow LEDs - delay(); + for(i = 1000; i > 0; i--){ + delay(); + } } }