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-09-24
- Revision:
- 60:b4f337685ec4
- Parent:
- 59:6c2b9318ee68
File content as of revision 60:b4f337685ec4:
#include "system.h"
#include "led.h"
#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"
#include "bignum.h"
void Lpc1768Init()
{
SystemInit();
LedInit();
ResetInit();
Lpc1768ThisInit();
RtcInit();
HrTimerInit();
}
void Lpc1768Main()
{
ResetMain();
FirmwareMain();
Lpc1768ThisMain();
RandomMain();
MsTimerMain();
ScanMain();
}