8000 zephyr: Switch to microkernel, required for network to work in backgr… · ladyada/circuitpython@7df9f31 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7df9f31

Browse files
committed
zephyr: Switch to microkernel, required for network to work in background.
1 parent 9ad5032 commit 7df9f31

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

zephyr/Makefile.zephyr

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
# limitations under the License.
1515
#
1616

17-
KERNEL_TYPE = nano
17+
KERNEL_TYPE = micro
1818
# BOARD must be passed on command line from main Makefile
1919
#BOARD =
2020
CONF_FILE = prj.conf
21+
MDEF_FILE = prj.mdef
2122

2223
#export SOURCE_DIR = $(ZEPHYR_BASE)/samples/static_lib/hello_world
2324
export LDFLAGS_zephyr += -L$(CURDIR)

zephyr/prj.mdef

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
% Application : MicroPython
2+
3+
% TASK NAME PRIO ENTRY STACK GROUPS
4+
% ==================================
5+
TASK MAIN 7 main 4096 [EXE]

0 commit comments

Comments
 (0)
0