Skip to content

Commit b51b682

Browse files
pfalconLaszloLango
authored andcommitted
targets: zephyr: Reinstate "print" function and error printing. (jerryscript-project#1851)
Re-add "print" function following resent refactors when it was moved from jerry-core to jerry-ext. This is done in particular to keep detailed messages on errors. JerryScript-DCO-1.0-Signed-off-by: Paul Sokolovsky [email protected]
1 parent 557fa50 commit b51b682

File tree

5 files changed

+36
-6
lines changed

5 files changed

+36
-6
lines changed

targets/zephyr/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ZEPHYRLIB = $(ZEPHYR_BASE)/lib
3434
TARGET_ZEPHYR ?= ./targets/zephyr
3535
SOURCE_DIR = $(TARGET_ZEPHYR)/src
3636

37-
export JERRY_INCLUDE = $(CURDIR)/jerry-core/include
37+
export JERRY_INCLUDE = -I$(CURDIR)/jerry-core/include -I$(CURDIR)/jerry-ext/include
3838

3939
MDEF_FILE = $(realpath $(SOURCE_DIR)/../prj.mdef)
4040
CONF_FILE = $(realpath $(SOURCE_DIR)/../prj.conf)

targets/zephyr/Makefile.zephyr

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export BOARD
2424
TARGET_ZEPHYR ?= ./targets/zephyr
2525
TARGET_ZEPHYR_SRC_DIR = $(TARGET_ZEPHYR)/src
2626

27-
TYPE ?= jerry-core
27+
COMPONENTS ?= jerry-core jerry-ext
2828
JERRYHEAP ?= 16
2929
JERRYPROFILE ?= minimal
3030

@@ -61,9 +61,9 @@ EXT_CFLAGS += -D_XOPEN_SOURCE=700
6161

6262
EXT_CFLAGS += -Wno-error=conversion
6363

64-
EXTERNAL_LIB = $(INTERM)/lib/libjerry-core.a
64+
EXTERNAL_LIB = $(INTERM)/lib/libjerry-core.a $(INTERM)/lib/libjerry-ext.a
6565

66-
LIBS = jerry-core
66+
LIBS = jerry-core jerry-ext
6767

6868
BUILD_CONFIG = O="$(OUTPUT)" V=$(V) USER_LIBS="$(LIBS)" USER_LIB_INCLUDE_DIR="-L $(CURDIR)/$(INTERM)/lib" TARGET_ZEPHYR=$(TARGET_ZEPHYR)
6969

@@ -94,7 +94,7 @@ endif
9494
-DJERRY_LIBC=OFF \
9595
$(EXT_JERRY_FLAGS)
9696

97-
make -C $(INTERM) $(TYPE)$(VARIETY) V=1
97+
make -C $(INTERM) $(COMPONENTS) V=1
9898

9999
$(OUTPUT)/Makefile.export: $(OUTPUT)/include/config/auto.conf
100100
make -f $(TARGET_ZEPHYR)/Makefile $(BUILD_CONFIG) outputexports

targets/zephyr/src/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ $(info Compiling application)
1717
endif
1818

1919
# Adding path for jerry script APIs
20-
ZEPHYRINCLUDE += -I$(JERRY_INCLUDE)
20+
ZEPHYRINCLUDE += $(JERRY_INCLUDE)
2121

2222
obj-y += main-zephyr.o getline-zephyr.o jerry-port.o

targets/zephyr/src/jerry-port.c

+10
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,13 @@ jerry_port_get_time_zone (jerry_time_zone_t *tz_p)
7272

7373
return true;
7474
} /* jerry_port_get_time_zone */
75+
76+
/**
77+
* Provide the implementation of jerryx_port_handler_print_char.
78+
* Uses 'printf' to print a single character to standard output.
79+
*/
80+
void
81+
jerryx_port_handler_print_char (char c) /**< the character to print */
82+
{
83+
printf ("%c", c);
84+
} /* jerryx_port_handler_print_char */

targets/zephyr/src/main-zephyr.c

+20
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,28 @@
2222
#include "getline-zephyr.h"
2323

2424
#include "jerryscript.h"
25+
#include "jerryscript-port.h"
26+
#include "jerryscript-ext/handler.h"
2527

2628
static jerry_value_t print_function;
2729

30+
/**
31+
* Register a JavaScript function in the global object.
32+
*/
33+
static void
34+
register_js_function (const char *name_p, /**< name of the function */
35+
jerry_external_handler_t handler_p) /**< function callback */
36+
{
37+
jerry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p);
38+
39+
if (jerry_value_has_error_flag (result_val))
40+
{
41+
jerry_port_log (JERRY_LOG_LEVEL_WARNING, "Warning: failed to register '%s' method.", name_p);
42+
}
43+
44+
jerry_release_value (result_val);
45+
} /* register_js_function */
46+
2847
static int shell_cmd_handler (char *source_buffer)
2948
{
3049
jerry_value_t ret_val;
@@ -69,6 +88,7 @@ void main (void)
6988

7089
zephyr_getline_init ();
7190
jerry_init (JERRY_INIT_EMPTY);
91+
register_js_function ("print", jerryx_handler_print);
7292
jerry_value_t global_obj_val = jerry_get_global_object ();
7393

7494
jerry_value_t print_func_name_val = jerry_create_string ((jerry_char_t *) "print");

0 commit comments

Comments
 (0)