Minor speed tweek
authorKevin Townsend <kevin@ktownsend.com>
Sat, 31 Mar 2012 23:39:12 +0000 (01:39 +0200)
committerKevin Townsend <kevin@ktownsend.com>
Sat, 31 Mar 2012 23:39:12 +0000 (01:39 +0200)
tools/examples/default/main.c

index 7c2bd31..80c0e8e 100644 (file)
@@ -68,7 +68,7 @@ int main(void)
     if (currentSecond != lastSecond)
     {
       lastSecond = currentSecond;
-      gpioSetValue(CFG_LED_PORT, CFG_LED_PIN, !(gpioGetValue(CFG_LED_PORT, CFG_LED_PIN)));
+      gpioSetValue(CFG_LED_PORT, CFG_LED_PIN, lastSecond % 2);
     }
 
     // Poll for CLI input if CFG_INTERFACE is enabled in projectconfig.h
This page took 0.030432 seconds and 4 git commands to generate.