docs: fixed misc broken links

This commit is contained in:
Marius Vikhammer
2022-09-18 15:02:21 +08:00
parent 2f13368c63
commit 8540e7a772
6 changed files with 24 additions and 23 deletions

View File

@@ -381,31 +381,31 @@ ESP-IDF supports Python 3.7 or newer. It is recommended to upgrade your operatin
A BSP typically supports all of the hardware components provided on development board. Apart from the pinout definition and initialization functions, a BSP ships with drivers for the external components such as sensors, displays, audio codecs etc.
The BSPs are distributed via `IDF Component Manager <../api-guides/tools/idf-component-manager>`_, so they can be found in `IDF Component Registry <https://components.espressif.com>`_.
The BSPs are distributed via :doc:`IDF Component Manager </api-guides/tools/idf-component-manager>`, so they can be found in `IDF Component Registry <https://components.espressif.com>`_.
.. only:: esp32
**Here's an example of how to add ESP-WROVER-KIT BSP to your project:**
.. code-block:: bash
idf.py add-dependency esp_wrover_kit
idf.py add-dependency esp_wrover_kit
.. only:: esp32s2
**Here's an example of how to add ESP32-S2-Kaluga-Kit BSP to your project:**
.. code-block:: bash
idf.py add-dependency esp32_s2_kaluga_kit
.. only:: esp32s3
**Here's an example of how to add ESP-BOX BSP to your project:**
.. code-block:: bash
idf.py add-dependency esp-box
idf.py add-dependency esp-box
More examples of BSP usage can be found in `BSP examples folder <https://github.com/espressif/esp-bsp/tree/master/examples>`_.