Skip to content

Add fix for SoftwareSerial submodule errors to documentation #5602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions doc/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,15 @@ Instructions - Windows 10
--- boards.txt
--- 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

.. code:: bash
Expand Down Expand Up @@ -166,6 +175,15 @@ Instructions - Other OS
--- boards.txt
--- 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

.. code:: bash
Expand All @@ -174,3 +192,11 @@ Instructions - Other OS
python get.py

- 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