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-03-24
- Revision:
- 38:cdab3abc35b0
- Parent:
- 28:00c3324e2434
- Child:
- 48:9784768cdc6c
File content as of revision 38:cdab3abc35b0:
#include "system.h"
#include "led.h"
#include "fault.h"
#include "firmware.h"
#include "random.h"
void Lpc1768Main()
{
FaultMain();
RandomMain();
FirmwareMain();
}
void Lpc1768Init()
{
SystemInit();
LedInit();
FaultInit();
}