test

Dependencies:   mbed

Revision:
7:8f0594cbc89a
Parent:
6:9b523c7d1475
Child:
8:2f1b2d1774a3
--- a/main.cpp	Mon Jan 13 18:03:29 2020 +0000
+++ b/main.cpp	Mon Jan 13 18:06:32 2020 +0000
@@ -20,7 +20,7 @@
     anzahl=lauflicht(true,400,anz=0);
     printf("anzahl=%d\n",anzahl);
     
-    nibbleLeds(value);
+    nibbbleLeds(value);
     printb(value);
     value=modifyBit(value,2,1);
     printb(myleds);
@@ -29,6 +29,10 @@
      
     }
     
+     void nibbleLeds(int value)
+     {
+         myleds=value%16;
+     }
     int modifyBit(intx,unit8_t position,bool State)
     {
         int mask = 1 << position;
@@ -36,10 +40,7 @@
         return(x&~mask)|((state<<position)&mask);
     }
     
-    void nibbleLeds(int value)
-{
-    myled=value%16;
-    }
+   
     int lauflicht(bool richtung,int time,int&anz)
     {
       int i;