You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/en/installing.rst
-87
Original file line number
Diff line number
Diff line change
@@ -63,92 +63,6 @@ To start the installation process using the Boards Manager, follow these steps:
63
63
64
64
- Restart Arduino IDE.
65
65
66
-
Installing using PlatformIO
67
-
---------------------------
68
-
69
-
.. figure:: ../_static/logo_pio.png
70
-
:align:center
71
-
:width:200
72
-
:figclass:align-center
73
-
74
-
PlatformIO is a professional collaborative platform for embedded development. It has out-of-the-box support for ESP32 SoCs and allows working with Arduino ESP32 as well as ESP-IDF from Espressif without changing your development environment. PlatformIO includes lots of instruments for the most common development tasks such as debugging, unit testing, and static code analysis.
75
-
76
-
.. warning:: Integration of the Arduino Core ESP32 project in PlatformIO is maintained by PlatformIO developers. Arduino Core ESP32 Project Team cannot support PlatformIO-specific issues. Please report these issues in official `PlatformIO repositories <https://github.com/platformio>`_.
77
-
78
-
A detailed overview of the PlatformIO ecosystem and its philosophy can be found in `the official documentation <https://docs.platformio.org/en/latest/core/index.html>`_.
79
-
80
-
PlatformIO can be used in two flavors:
81
-
82
-
- `PlatformIO IDE <https://platformio.org/platformio-ide>`_ is a toolset for embedded C/C++ development available on Windows, macOS and Linux platforms
83
-
84
-
- `PlatformIO Core (CLI) <https://docs.platformio.org/en/latest/core/index.html>`_ is a command-line tool that consists of a multi-platform build system, platform and library managers and other integration components. It can be used with a variety of code development environments and allows integration with cloud platforms and web services
85
-
86
-
To install PlatformIO, you can follow this Getting Started, provided at `docs.platformio.org`_.
87
-
88
-
Using the stable code
89
-
*********************
90
-
91
-
.. note::
92
-
A detailed overview of supported development boards, examples and frameworks can be found on `the official Espressif32 dev-platform page <https://registry.platformio.org/platforms/platformio/espressif32>`_ in the PlatformIO Registry.
93
-
94
-
The most reliable and easiest way to get started is to use the latest stable version of the ESP32 development platform that passed all tests/verifications and can be used in production.
95
-
96
-
Create a new project and select one of the available boards. You can change after by changing the `platformio.ini <https://docs.platformio.org/en/latest/projectconf/index.html>`_ file.
97
-
98
-
- For ESP32
99
-
100
-
.. code-block:: bash
101
-
102
-
[env:esp32dev]
103
-
platform = espressif32
104
-
board = esp32dev
105
-
framework = arduino
106
-
107
-
- For ESP32-S2 (ESP32-S2-Saola-1 board)
108
-
109
-
.. code-block:: bash
110
-
111
-
[env:esp32-s2-saola-1]
112
-
platform = espressif32
113
-
board = esp32-s2-saola-1
114
-
framework = arduino
115
-
116
-
- For ESP32-C3 (ESP32-C3-DevKitM-1 board)
117
-
118
-
.. code-block:: bash
119
-
120
-
[env:esp32-c3-devkitm-1]
121
-
platform = espressif32
122
-
board = esp32-c3-devkitm-1
123
-
framework = arduino
124
-
125
-
How to update to the latest code
126
-
********************************
127
-
128
-
To test the latest Arduino ESP32, you need to change your project *platformio.ini* accordingly.
129
-
The following configuration uses the upstream version of the Espressif development platform and the latest Arduino core directly from the Espressif GitHub repository:
Copy file name to clipboardexpand all lines: docs/en/tutorials/blink.rst
+1-2
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Introduction
7
7
8
8
This is the interactive blink tutorial using `Wokwi`_. For this tutorial, you don't need the ESP32 board or the Arduino toolchain.
9
9
10
-
.. note:: If you don't want to use this tutorial with the simulation, you can copy and paste the :ref:`blink_example_code` from `Wokwi`_ editor and use it on the `Arduino IDE`_ or `PlatformIO`_.
10
+
.. note:: If you don't want to use this tutorial with the simulation, you can copy and paste the :ref:`blink_example_code` from `Wokwi`_ editor and use it on the `Arduino IDE`.
Copy file name to clipboardexpand all lines: libraries/ESP32/examples/FreeRTOS/Mutex/README.md
-4
Original file line number
Diff line number
Diff line change
@@ -51,10 +51,6 @@ To get more information about the Espressif boards see [Espressif Development Ki
51
51
* Before Compile/Verify, select the correct board: `Tools -> Board`.
52
52
* Select the COM port: `Tools -> Port: xxx` where the `xxx` is the detected COM port.
53
53
54
-
#### Using Platform IO
55
-
56
-
* Select the COM port: `Devices` or set the `upload_port` option on the `platformio.ini` file.
57
-
58
54
## Example Log Output
59
55
60
56
The expected output of shared variables protected by mutex demonstrates mutually exclusive access from tasks - they do not interrupt each other and do not rewrite the value before the other task has read it back.
0 commit comments