8000 Initialize SoftAP DhcpServer object on demand by mcspr · Pull Request #8546 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Initialize SoftAP DhcpServer object on demand #8546

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 21 commits into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
wifi ap needs this anyway, simplify sketch includes
  • Loading branch information
mcspr committed Apr 19, 2022
commit bb5a7d30d77d5328a25f40751fed5025e03fbd3f
1 change: 0 additions & 1 deletion libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ extern "C" {
#include "debug.h"

#include <LwipDhcpServer.h>
#include <LwipDhcpServer-NonOS.h>

// -----------------------------------------------------------------------------------------------------------------------
// ---------------------------------------------------- Private functions ------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions libraries/ESP8266WiFi/src/ESP8266WiFiAP.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "ESP8266WiFiType.h"
#include "ESP8266WiFiGeneric.h"

#include <LwipDhcpServer-NonOS.h>

class ESP8266WiFiAPClass {

Expand Down
0