File tree 5 files changed +36
-6
lines changed
5 files changed +36
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ ZEPHYRLIB = $(ZEPHYR_BASE)/lib
34
34
TARGET_ZEPHYR ?= ./targets/zephyr
35
35
SOURCE_DIR = $(TARGET_ZEPHYR ) /src
36
36
37
- export JERRY_INCLUDE = $(CURDIR ) /jerry-core/include
37
+ export JERRY_INCLUDE = -I $(CURDIR ) /jerry-core/include -I $( CURDIR ) /jerry-ext /include
38
38
39
39
MDEF_FILE = $(realpath $(SOURCE_DIR ) /../prj.mdef)
40
40
CONF_FILE = $(realpath $(SOURCE_DIR ) /../prj.conf)
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export BOARD
24
24
TARGET_ZEPHYR ?= ./targets/zephyr
25
25
TARGET_ZEPHYR_SRC_DIR = $(TARGET_ZEPHYR)/src
26
26
27
- TYPE ?= jerry-core
27
+ COMPONENTS ?= jerry-core jerry-ext
28
28
JERRYHEAP ?= 16
29
29
JERRYPROFILE ?= minimal
30
30
@@ -61,9 +61,9 @@ EXT_CFLAGS += -D_XOPEN_SOURCE=700
61
61
62
62
EXT_CFLAGS += -Wno-error=conversion
63
63
64
- EXTERNAL_LIB = $(INTERM)/lib/libjerry-core.a
64
+ EXTERNAL_LIB = $(INTERM)/lib/libjerry-core.a $(INTERM)/lib/libjerry-ext.a
65
65
66
- LIBS = jerry-core
66
+ LIBS = jerry-core jerry-ext
67
67
68
68
BUILD_CONFIG = O="$(OUTPUT)" V=$(V) USER_LIBS="$(LIBS)" USER_LIB_INCLUDE_DIR="-L $(CURDIR)/$(INTERM)/lib" TARGET_ZEPHYR=$(TARGET_ZEPHYR)
69
69
94
94
-DJERRY_LIBC=OFF \
95
95
$(EXT_JERRY_FLAGS)
96
96
97
- make -C $(INTERM) $(TYPE)$(VARIETY ) V=1
97
+ make -C $(INTERM) $(COMPONENTS ) V=1
98
98
99
99
$(OUTPUT)/Makefile.export: $(OUTPUT)/include/config/auto.conf
100
100
make -f $(TARGET_ZEPHYR)/Makefile $(BUILD_CONFIG) outputexports
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ $(info Compiling application)
17
17
endif
18
18
19
19
# Adding path for jerry script APIs
20
- ZEPHYRINCLUDE += -I $(JERRY_INCLUDE )
20
+ ZEPHYRINCLUDE += $(JERRY_INCLUDE )
21
21
22
22
obj-y += main-zephyr.o getline-zephyr.o jerry-port.o
Original file line number Diff line number Diff line change @@ -72,3 +72,13 @@ jerry_port_get_time_zone (jerry_time_zone_t *tz_p)
72
72
73
73
return true;
74
74
} /* 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 */
Original file line number Diff line number Diff line change 22
22
#include "getline-zephyr.h"
23
23
24
24
#include "jerryscript.h"
25
+ #include "jerryscript-port.h"
26
+ #include "jerryscript-ext/handler.h"
25
27
26
28
static jerry_value_t print_function ;
27
29
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
+
28
47
static int shell_cmd_handler (char * source_buffer )
29
48
{
30
49
jerry_value_t ret_val ;
@@ -69,6 +88,7 @@ void main (void)
69
88
70
89
zephyr_getline_init ();
71
90
jerry_init (JERRY_INIT_EMPTY );
91
+ register_js_function ("print" , jerryx_handler_print );
72
92
jerry_value_t global_obj_val = jerry_get_global_object ();
73
93
74
94
jerry_value_t print_func_name_val = jerry_create_string ((jerry_char_t * ) "print" );
You can’t perform that action at this time.
0 commit comments