ZIT-ARM-1769: Led to LED control logic from Raashid Fatah

This commit is contained in:
Gregory Nutt 2013-09-26 07:15:52 -06:00
parent b3ecd158ac
commit fde6c30ac2

View File

@ -157,8 +157,8 @@ void up_ledon(int led)
break; break;
} }
lpc17_led(ZKITARM_LED1, led1); lpc17_gpiowrite(ZKITARM_LED1, led1);
lpc17_led(ZKITARM_LED2, led2); lpc17_gpiowrite(ZKITARM_LED2, led2);
} }
/* We will always control the HB LED */ /* We will always control the HB LED */
@ -187,7 +187,7 @@ void up_ledoff(int led)
if (g_nestcount <= 1) if (g_nestcount <= 1)
{ {
lpc17_led(ZKITARM_LED2, true); lpc17_gpiowrite(ZKITARM_LED2, true);
g_nestcount = 0; g_nestcount = 0;
} }
else else
@ -206,7 +206,7 @@ void up_ledoff(int led)
void lpc17_led(int lednum, int state) void lpc17_led(int lednum, int state)
{ {
lpc17_gpiowrite(lednum, state); lpc17_gpiowrite(ZKITARM_LED1, state);
} }
#endif /* CONFIG_ARCH_LEDS */ #endif /* CONFIG_ARCH_LEDS */