summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaureen Helm <maureen.helm@nxp.com>2020-09-28 09:23:10 -0500
committerDamien George <damien@micropython.org>2020-09-30 23:21:53 +1000
commit997ec9e8ccaf4f1d8a950ef025e098e6b033c66c (patch)
treed0b1cd7bef3df5bffa220c7313143a05ff27aa94
parentc2a7aac906a31b0d361b7177fae7fc88736a7705 (diff)
zephyr: Update build instructions to v2.4.0.
Updates the zephyr port build instructions to use the latest zephyr release tag. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
-rw-r--r--ports/zephyr/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/zephyr/README.md b/ports/zephyr/README.md
index a2fb393d9..d69030dc2 100644
--- a/ports/zephyr/README.md
+++ b/ports/zephyr/README.md
@@ -4,7 +4,7 @@ MicroPython port to Zephyr RTOS
This is a work-in-progress port of MicroPython to Zephyr RTOS
(http://zephyrproject.org).
-This port requires Zephyr version 2.3.0, and may also work on higher
+This port requires Zephyr version 2.4.0, and may also work on higher
versions. All boards supported
by Zephyr (with standard level of features support, like UART console)
should work with MicroPython (but not all were tested).
@@ -38,13 +38,13 @@ setup is correct.
If you already have Zephyr installed but are having issues building the
MicroPython port then try installing the correct version of Zephyr via:
- $ west init zephyrproject -m https://github.com/zephyrproject-rtos/zephyr --mr v2.3.0
+ $ west init zephyrproject -m https://github.com/zephyrproject-rtos/zephyr --mr v2.4.0
Alternatively, you don't have to redo the Zephyr installation to just
switch from master to a tagged release, you can instead do:
$ cd zephyrproject/zephyr
- $ git checkout v2.3.0
+ $ git checkout v2.4.0
$ west update
With Zephyr installed you may then need to configure your environment,