Merge pull request #38 from ytsuboi/master

Added LPC1114 support and fixed hard fault
pull/39/head
Bogdan Marinescu 2013-08-16 05:59:41 -07:00
commit 2139c101e5
1 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,9 @@ DigitalOut out(PTB1);
#elif defined(TARGET_LPC812)
DigitalOut out(P0_12);
#elif defined(TARGET_LPC1114)
DigitalOut out(LED2);
#else
DigitalOut out(p5);
#endif
@ -33,4 +36,5 @@ void toggleOff(void) {
int main() {
toggleOn();
while(1);
}