From 62ba149b81ff4644d877f092c9defbeecebd0dca Mon Sep 17 00:00:00 2001 From: William Miceli Date: Tue, 18 May 2021 11:09:05 -0400 Subject: [PATCH] Better to use "High" or "Low" than "On" or "Off" --- Telem_Debug/Debug_BlinkyLED-Basic/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telem_Debug/Debug_BlinkyLED-Basic/main.c b/Telem_Debug/Debug_BlinkyLED-Basic/main.c index d887024..ab9ddeb 100644 --- a/Telem_Debug/Debug_BlinkyLED-Basic/main.c +++ b/Telem_Debug/Debug_BlinkyLED-Basic/main.c @@ -13,7 +13,7 @@ int main(void) { P8DIR |= LEDG | LEDR | LEDY0 | LEDY1; // Set all four main LEDs as output P8OUT |= LEDG; // Turn on permanently the green LED - P8OUT &= ~(LEDY0 | LEDY1); // Initially set both yellow LEDs off + P8OUT &= ~(LEDY0 | LEDY1); // Initially set both yellow LEDs to Low _EINT(); //enable global interrupts