summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/getting_started.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 9f558bfa4..7ab3116df 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -171,7 +171,7 @@ Install Pico SDK
**Windows:**
-.. code-block:: bash
+.. code-block:: bat
C:\> cd %USERPROFILE%
C:\Users\YourName> git clone https://github.com/raspberrypi/pico-sdk.git
@@ -191,13 +191,13 @@ Before running cmake, export the SDK path:
**Windows (Command Prompt):**
-.. code-block:: bash
+.. code-block:: bat
C:\> set PICO_SDK_PATH=%USERPROFILE%\pico-sdk
**Windows (PowerShell):**
-.. code-block:: bash
+.. code-block:: powershell
PS C:\> $env:PICO_SDK_PATH = "$env:USERPROFILE\pico-sdk"
@@ -233,7 +233,7 @@ Install ESP-IDF
**Windows:**
-.. code-block:: bash
+.. code-block:: bat
C:\> cd %USERPROFILE%
C:\Users\YourName> git clone --recursive https://github.com/espressif/esp-idf.git
@@ -253,13 +253,13 @@ Before running cmake, source the ESP-IDF export script:
**Windows (Command Prompt):**
-.. code-block:: bash
+.. code-block:: bat
C:\> %USERPROFILE%\esp-idf\export.bat
**Windows (PowerShell):**
-.. code-block:: bash
+.. code-block:: powershell
PS C:\> . $env:USERPROFILE\esp-idf\export.ps1