diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-08-25 22:15:38 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-10-10 01:41:38 +0300 |
commit | 7df9f313c687b5ff6965e01dcd2e9dfc50ffc354 (patch) | |
tree | de881de1ab692aafaa4d83d962fe797a4d860386 | |
parent | 9ad50321644131585e7860c79e085e458c49fbac (diff) | |
download | micropython-7df9f313c687b5ff6965e01dcd2e9dfc50ffc354.tar.gz micropython-7df9f313c687b5ff6965e01dcd2e9dfc50ffc354.zip |
zephyr: Switch to microkernel, required for network to work in background.
-rw-r--r-- | zephyr/Makefile.zephyr | 3 | ||||
-rw-r--r-- | zephyr/prj.mdef | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/zephyr/Makefile.zephyr b/zephyr/Makefile.zephyr index 52904ff8d0..ad905a4dba 100644 --- a/zephyr/Makefile.zephyr +++ b/zephyr/Makefile.zephyr @@ -14,10 +14,11 @@ # limitations under the License. # -KERNEL_TYPE = nano +KERNEL_TYPE = micro # BOARD must be passed on command line from main Makefile #BOARD = CONF_FILE = prj.conf +MDEF_FILE = prj.mdef #export SOURCE_DIR = $(ZEPHYR_BASE)/samples/static_lib/hello_world export LDFLAGS_zephyr += -L$(CURDIR) diff --git a/zephyr/prj.mdef b/zephyr/prj.mdef new file mode 100644 index 0000000000..5a7312f89f --- /dev/null +++ b/zephyr/prj.mdef @@ -0,0 +1,5 @@ +% Application : MicroPython + +% TASK NAME PRIO ENTRY STACK GROUPS +% ================================== + TASK MAIN 7 main 4096 [EXE] |