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:
- 48:9784768cdc6c
- Parent:
- 38:cdab3abc35b0
- Child:
- 49:d056e2c5c4ee
diff -r 129d4542d54b -r 9784768cdc6c lpc1768.c
--- a/lpc1768.c Fri May 03 14:41:21 2019 +0000
+++ b/lpc1768.c Tue May 07 07:34:39 2019 +0000
@@ -2,17 +2,18 @@
#include "led.h"
#include "fault.h"
#include "firmware.h"
-#include "random.h"
+#include "lpc1768-this.h"
+void Lpc1768Init()
+{
+ SystemInit();
+ LedInit();
+ FaultInit();
+ Lpc1768ThisInit();
+}
void Lpc1768Main()
{
- FaultMain();
- RandomMain();
- FirmwareMain();
-}
-void Lpc1768Init()
-{
- SystemInit();
- LedInit();
- FaultInit();
+ FaultMain();
+ FirmwareMain();
+ Lpc1768ThisMain();
}
\ No newline at end of file