Moved to /rf
[hackover2013-badge-firmware.git] / main.c
diff --git a/main.c b/main.c
index 1ab3bf2..703bf96 100644 (file)
--- a/main.c
+++ b/main.c
@@ -60,7 +60,9 @@ int main(void)
 
   uint32_t currentSecond, lastSecond;
   currentSecond = lastSecond = 0;
-  
+
+  lcdTest();
+
   while (1)
   {
     // Toggle LED once per second
@@ -68,7 +70,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, !(gpioGetValue(CFG_LED_PORT, CFG_LED_PIN)));
     }
 
     // Poll for CLI input if CFG_INTERFACE is enabled in projectconfig.h
This page took 0.021365 seconds and 4 git commands to generate.