forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/esp8266'
Conflicts: hardware/esp8266com/esp8266/cores/esp8266/Client.h hardware/esp8266com/esp8266/cores/esp8266/IPAddress.h hardware/esp8266com/esp8266/cores/esp8266/Printable.h hardware/esp8266com/esp8266/cores/esp8266/Server.h hardware/esp8266com/esp8266/cores/esp8266/Udp.h hardware/esp8266com/esp8266/cores/esp8266/binary.h
- Loading branch information
Showing
49 changed files
with
3,688 additions
and
3,404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,48 @@ | ||
/* | ||
Client.h - Base class that provides Client | ||
Copyright (c) 2011 Adrian McEwen. All right reserved. | ||
Client.h - Base class that provides Client | ||
Copyright (c) 2011 Adrian McEwen. All right reserved. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#ifndef client_h | ||
#define client_h | ||
#include "Print.h" | ||
#include "Stream.h" | ||
#include "IPAddress.h" | ||
|
||
class Client : public Stream { | ||
class Client: public Stream { | ||
|
||
public: | ||
virtual int connect(IPAddress ip, uint16_t port) =0; | ||
virtual int connect(const char *host, uint16_t port) =0; | ||
virtual size_t write(uint8_t) =0; | ||
virtual size_t write(const uint8_t *buf, size_t size) =0; | ||
virtual int available() = 0; | ||
virtual int read() = 0; | ||
virtual int read(uint8_t *buf, size_t size) = 0; | ||
virtual int peek() = 0; | ||
virtual void flush() = 0; | ||
virtual void stop() = 0; | ||
virtual uint8_t connected() = 0; | ||
virtual operator bool() = 0; | ||
protected: | ||
uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); }; | ||
public: | ||
virtual int connect(IPAddress ip, uint16_t port) =0; | ||
virtual int connect(const char *host, uint16_t port) =0; | ||
virtual size_t write(uint8_t) =0; | ||
virtual size_t write(const uint8_t *buf, size_t size) =0; | ||
virtual int available() = 0; | ||
virtual int read() = 0; | ||
virtual int read(uint8_t *buf, size_t size) = 0; | ||
virtual int peek() = 0; | ||
virtual void flush() = 0; | ||
virtual void stop() = 0; | ||
virtual uint8_t connected() = 0; | ||
virtual operator bool() = 0; | ||
protected: | ||
uint8_t* rawIPAddress(IPAddress& addr) { | ||
return addr.raw_address(); | ||
} | ||
; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
Esp.cpp - ESP8266-specific APIs | ||
Copyright (c) 2015 Ivan Grokhotkov. All rights reserved. | ||
This file is part of the esp8266 core for Arduino environment. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#include "Arduino.h" | ||
|
||
extern "C" { | ||
#include "user_interface.h" | ||
} | ||
|
||
extern "C" void ets_wdt_enable (void); | ||
extern "C" void ets_wdt_disable (void); | ||
extern "C" void wdt_feed (void); | ||
|
||
EspClass ESP; | ||
|
||
EspClass::EspClass() | ||
{ | ||
|
||
} | ||
|
||
void EspClass::wdtEnable(int) | ||
{ | ||
ets_wdt_enable(); | ||
} | ||
|
||
void EspClass::wdtDisable() | ||
{ | ||
ets_wdt_disable(); | ||
} | ||
|
||
void EspClass::wdtFeed() | ||
{ | ||
wdt_feed(); | ||
} | ||
|
||
void EspClass::deepSleep(uint32_t time_us, WakeMode mode) | ||
{ | ||
system_deep_sleep_set_option(static_cast<int>(mode)); | ||
system_deep_sleep(time_us); | ||
} | ||
|
||
void EspClass::reset() | ||
{ | ||
((void (*)(void))0x40000080)(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
Esp.h - ESP8266-specific APIs | ||
Copyright (c) 2015 Ivan Grokhotkov. All rights reserved. | ||
This file is part of the esp8266 core for Arduino environment. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#ifndef ESP_H | ||
#define ESP_H | ||
|
||
|
||
enum WakeMode { | ||
WAKE_RF_DEFAULT = 0, // RF_CAL or not after deep-sleep wake up, depends on init data byte 108. | ||
WAKE_RFCAL = 1, // RF_CAL after deep-sleep wake up, there will be large current. | ||
WAKE_NO_RFCAL = 2, // no RF_CAL after deep-sleep wake up, there will only be small current. | ||
WAKE_RF_DISABLED = 4 // disable RF after deep-sleep wake up, just like modem sleep, there will be the smallest current. | ||
}; | ||
|
||
class EspClass { | ||
public: | ||
EspClass(); | ||
|
||
void wdtEnable(int timeout_ms = 0); | ||
// TODO: figure out how to set WDT timeout | ||
void wdtDisable(); | ||
void wdtFeed(); | ||
|
||
void deepSleep(uint32_t time_us, WakeMode mode = WAKE_RF_DEFAULT); | ||
|
||
void reset(); | ||
}; | ||
|
||
extern EspClass ESP; | ||
|
||
#endif //ESP_H |
Oops, something went wrong.