Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: test-lpc1768 oldheating gps motorhome ... more
Diff: lpc1768.c
- 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