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
lpc1768.c
- Committer:
- andrewboyson
- Date:
- 2019-05-07
- Revision:
- 48:9784768cdc6c
- Parent:
- 38:cdab3abc35b0
- Child:
- 49:d056e2c5c4ee
File content as of revision 48:9784768cdc6c:
#include "system.h"
#include "led.h"
#include "fault.h"
#include "firmware.h"
#include "lpc1768-this.h"
void Lpc1768Init()
{
SystemInit();
LedInit();
FaultInit();
Lpc1768ThisInit();
}
void Lpc1768Main()
{
FaultMain();
FirmwareMain();
Lpc1768ThisMain();
}