summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <[email protected]>2025-12-28 14:19:52 +0000
committercopilot-swe-agent[bot] <[email protected]>2025-12-28 14:19:52 +0000
commit1bb1efa8202c0cb5e49fa3fc50c608ac03daaa71 (patch)
tree51076ff2356052c45658fe4d31b75b92551162b8
parent83542ce912f902d78908eac7e0b0bb8830cb7741 (diff)
Use appropriate syntax highlighting for Windows commands
- Changed Windows Command Prompt blocks from bash to bat for proper highlighting - Changed PowerShell blocks from bash to powershell for proper highlighting - Improves documentation readability and accuracy Co-authored-by: HiFiPhile <[email protected]>
-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