mirror of https://github.com/ARMmbed/mbed-os.git
Removed unnecessary LPC1114-specific test.
parent
789f81b1ea
commit
7f736b9d19
|
@ -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);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -635,13 +635,6 @@ TESTS = [
|
||||||
"source_dir": join(TEST_DIR, "mbed", "fs"),
|
"source_dir": join(TEST_DIR, "mbed", "fs"),
|
||||||
"dependencies": [MBED_LIBRARIES, RTOS_LIBRARIES, TEST_MBED_LIB, SD_FS, FAT_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:
|
class Test:
|
||||||
|
|
Loading…
Reference in New Issue