fixed leds invert

This commit is contained in:
nifi 2006-10-09 14:38:23 +00:00
parent 788b6c75c0
commit 5528198929

View File

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: leds.c,v 1.2 2006/10/09 11:55:02 adamdunkels Exp $ * @(#)$Id: leds.c,v 1.3 2006/10/09 14:38:23 nifi Exp $
*/ */
#include "dev/leds.h" #include "dev/leds.h"
@ -39,7 +39,7 @@ static unsigned char leds, invert;
static void static void
show_leds(void) show_leds(void)
{ {
leds_arch_set(leds); leds_arch_set(leds ^ invert);
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
void void
@ -87,7 +87,7 @@ leds_toggle(unsigned char leds)
/* invert the ínvert register using the leds parameter */ /* invert the ínvert register using the leds parameter */
void leds_invert(unsigned char l) { void leds_invert(unsigned char l) {
leds = ~leds; invert = invert ^ l;
show_leds(); show_leds();
} }