Removed unnecessary LPC1114-specific test.

pull/17/head
Matthew Else 2013-08-01 23:04:13 +01:00
parent 789f81b1ea
commit 7f736b9d19
2 changed files with 0 additions and 22 deletions

View File

@ -1,15 +0,0 @@
#include "mbed.h"
DigitalOut led(P1_9);
int main() {
while (1) {
printf("Testing...\r\n");
led = 1;
printf("LED on\r\n");
wait(0.5);
printf("After wait\r\n");
led = 0;
wait(0.5);
}
}

View File

@ -635,13 +635,6 @@ TESTS = [
"source_dir": join(TEST_DIR, "mbed", "fs"),
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, TEST_MBED_LIB, SD_FS, FAT_FS],
},
# LPC1114
{
"id": "LPCBlink", "description": "Example for LPC, blinking",
"source_dir": join(TEST_DIR, "LPC1114", "Blinky"),
"dependencies": [MBED_LIBRARIES],
},
]
class Test: