Skip to content

Added Arduino-ESP32 compatibility #6

New issue

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

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

Already on GitHub? # to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions Shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

Author website: http://www.geekfactory.mx
Author e-mail: ruben at geekfactory dot mx
*/
Expand All @@ -29,7 +29,7 @@

#ifdef ARDUINO
#include <Arduino.h>
#ifdef ESP8266
#if defined ESP8266 || defined ARDUINO_ARCH_ESP32
#include <pgmspace.h>
#else
#include <avr/pgmspace.h>
Expand Down Expand Up @@ -260,7 +260,7 @@ extern "C" {
* @brief Prints a null terminated string to the terminal from flash
*
* Displays a string on the terminal. The string should be null terminated.
*
*
* This function is designed to be used with strings stored in flash.
*
* @param string The string to send to the terminal
Expand All @@ -272,7 +272,7 @@ extern "C" {
*
* Displays a string on the terminal and moves the cursor to the next line. The
* string should be null terminated.
*
*
* This function is designed to be used with strings stored in flash.
*
* @param string The string to send to the terminal
Expand All @@ -286,7 +286,7 @@ extern "C" {
* specifiers (subsequences beginning with '%'), the additional arguments
* following format are formatted and inserted in the resulting string
* replacing their respective specifiers.
*
*
* This function is designed to be used with strings stored in flash.
*
* This function implements it�s own mechanism for text formatting. It doesn�t
Expand Down