From 3dbc1ffc5926fe9bb98c5b0300ab480753ebbbb5 Mon Sep 17 00:00:00 2001 From: Marek Matej Date: Fri, 6 Dec 2024 14:56:36 +0100 Subject: [PATCH] blog: Zephyr ROTS: fix init commands (#355) Fix Zephyr initial commands by removing command that no longer exist. Signed-off-by: Marek Matej Co-authored-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 526ac390..96b59c38 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.