From 1629889b771518d67d7975af4623c13ad243bd30 Mon Sep 17 00:00:00 2001 From: Marek Matej Date: Fri, 6 Dec 2024 11:11:34 +0100 Subject: [PATCH] blog: Zephyr ROTS: fix init commands Fix Zephyr initial commands by removing command that no longer exist. Signed-off-by: Marek Matej --- content/blog/zephyr-rtos-on-esp32-first-steps/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/blog/zephyr-rtos-on-esp32-first-steps/index.md b/content/blog/zephyr-rtos-on-esp32-first-steps/index.md index 526ac3903..96b59c387 100644 --- a/content/blog/zephyr-rtos-on-esp32-first-steps/index.md +++ b/content/blog/zephyr-rtos-on-esp32-first-steps/index.md @@ -81,7 +81,6 @@ Here is a worthy observation: west is the tool that manages the entire life-cycl west init ~/zephyrproject cd ~/zephyrproject west update -west espressif update ``` Be patient, these last commands will fetch Zephyr’s repository and all the HALs (including Espressif’s) already ported to this RTOS. Note that we do not explicitly call a git command to clone the repositories, __west__ takes care of everything.