Merged target for mbed boards.

Merged the mbed releated targets into one source.
Available targets: FRDM-K64f, Discovery-STM32F4, Discovery-STM32F429ZI, NUCLEO-STM32F4

JerryScript-DCO-1.0-Signed-off-by: Imre Kiss kissi@inf.u-szeged.hu
This commit is contained in:
Imre Kiss
2016-04-19 14:04:18 +02:00
parent 94161d350a
commit 5369fd4515
20 changed files with 301 additions and 299 deletions
+10
View File
@@ -0,0 +1,10 @@
var check = 1;
function blink ()
{
var blk = (check > 8) ? 1 : 0;
led (0, blk);
check = (check >= 10) ? 1 : check + 1;
}
print ("blink js OK");
+6
View File
@@ -0,0 +1,6 @@
function sysloop (ticknow)
{
blink ();
}
print ("main js OK");