From ca72c2d1f3bce2e034e44b277911ee3f305432fa Mon Sep 17 00:00:00 2001 From: Eren Terzioglu Date: Mon, 16 Dec 2024 12:09:03 +0100 Subject: [PATCH] Changes on nuttx getting started article --- 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 ```