Andrew Boyson / lpc1768

Dependents:   test-lpc1768 oldheating gps motorhome ... more

Revision:
51:fb18aa3ec115
Parent:
49:d056e2c5c4ee
Child:
52:88d594aca377
diff -r e90c6aaa2645 -r fb18aa3ec115 lpc1768.c
--- a/lpc1768.c	Thu May 09 07:48:38 2019 +0000
+++ b/lpc1768.c	Mon May 27 10:11:37 2019 +0000
@@ -3,6 +3,11 @@
 #include "reset.h"
 #include "firmware.h"
 #include "lpc1768-this.h"
+#include "rtc.h"
+#include "hrtimer.h"
+#include "random.h"
+#include "mstimer.h"
+#include "scan.h"
 
 void Lpc1768Init()
 {
@@ -10,10 +15,15 @@
             LedInit();
           ResetInit();
     Lpc1768ThisInit();
+            RtcInit();
+        HrTimerInit();
 }
 void Lpc1768Main()
 {
           ResetMain();
        FirmwareMain();
     Lpc1768ThisMain();
+         RandomMain();
+        MsTimerMain();
+           ScanMain();
 }
\ No newline at end of file