From 2c3ecdec06fa79b8310da4e712882c97983769fe Mon Sep 17 00:00:00 2001 From: eren-terzioglu <95618392+eren-terzioglu@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:19:23 +0100 Subject: [PATCH] Changes on nuttx getting started article (#364) --- content/blog/nuttx-getting-started/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/blog/nuttx-getting-started/index.md b/content/blog/nuttx-getting-started/index.md index df3c9dfe..6ff321e7 100644 --- a/content/blog/nuttx-getting-started/index.md +++ b/content/blog/nuttx-getting-started/index.md @@ -193,9 +193,10 @@ git clone https://github.com/apache/nuttx-apps apps ### Building an App to Connect to a Wi-Fi network -NuttX provides ready-to-use board default configurations that enable the required config (from Kconfig) for a use scenario, such as Wi-Fi or I2C. You can list all available configurations for the ESP32 DevKitC V4 board using the following command, inside the NuttX directory: +NuttX provides ready-to-use board default configurations that enable the required config (from Kconfig) for a use scenario, such as Wi-Fi or I2C. To enter NuttX directory and list all available configurations for the ESP32 DevKitC V4 board you can use the following command: ```bash +cd nuttx ./tools/configure.sh -L | grep esp32-devkitc ```