mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-12 01:53:07 +03:00
Add fix for SoftwareSerial submodule errors to documentation (#5602)
* Add fix for SoftwareSerial submodule errors to documentation * Update installing.rst Replaces and based on #5602 Fixes #5583 * Update installing.rst Remove forgotten section Add update section for Other OS
This commit is contained in:
committed by
Develo
parent
570b9a6b6a
commit
324eb56d65
@ -101,6 +101,15 @@ Instructions - Windows 10
|
|||||||
--- boards.txt
|
--- boards.txt
|
||||||
--- LICENSE
|
--- LICENSE
|
||||||
|
|
||||||
|
- Initialize the submodules
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
cd %USERPROFILE%\Documents\hardware\esp8266com\esp8266
|
||||||
|
git submodules update --init
|
||||||
|
|
||||||
|
If error messages about missing files related to ``SoftwareSerial`` are encountered during the build process, it should be because this step was missed and is required.
|
||||||
|
|
||||||
- Download binary tools
|
- Download binary tools
|
||||||
|
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
@ -166,6 +175,15 @@ Instructions - Other OS
|
|||||||
--- boards.txt
|
--- boards.txt
|
||||||
--- LICENSE
|
--- LICENSE
|
||||||
|
|
||||||
|
- Initialize the submodules
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
cd esp8266
|
||||||
|
git submodules update --init
|
||||||
|
|
||||||
|
If error messages about missing files related to ``SoftwareSerial`` are encountered during the build process, it should be because this step was missed and is required.
|
||||||
|
|
||||||
- Download binary tools
|
- Download binary tools
|
||||||
|
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
@ -174,3 +192,11 @@ Instructions - Other OS
|
|||||||
python get.py
|
python get.py
|
||||||
|
|
||||||
- Restart Arduino
|
- Restart Arduino
|
||||||
|
|
||||||
|
- When later updating your local library, goto the esp8266 directory and do a git pull
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
cd hardware\esp8266com\esp8266
|
||||||
|
git status
|
||||||
|
git pull
|
||||||
|
Reference in New Issue
Block a user