ESP8266开发板烧录Arduino的CaptivePortal例程报错-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1765|回复: 0

ESP8266开发板烧录Arduino的CaptivePortal例程报错

[复制链接]
发表于 2020-12-4 22:32 | 显示全部楼层 |阅读模式
本帖最后由 iakihsoug 于 2020-12-4 22:51 编辑
  1. #include <ESP8266WiFi.h>
  2. #include <DNSServer.h>
  3. #include <ESP8266WebServer.h>

  4. const byte DNS_PORT = 53;
  5. IPAddress apIP(172, 217, 28, 1);
  6. DNSServer dnsServer;
  7. ESP8266WebServer webServer(80);

  8. String responseHTML = ""
  9.                       "<!DOCTYPE html><html lang='en'><head>"
  10.                       "<meta name='viewport' content='width=device-width'>"
  11.                       "<title>CaptivePortal</title></head><body>"
  12.                       "<h1>Hello World!</h1><p>This is a captive portal example."
  13.                       " All requests will be redirected here.</p></body></html>";

  14. void setup() {
  15.   delay(1000);
  16.   Serial.begin(74880);
  17.   Serial.println();
  18.   WiFi.mode(WIFI_AP);
  19.   WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));
  20.   WiFi.softAP("DNSServer CaptivePortal example");

  21.   // if DNSServer is started with "*" for domain name, it will reply with
  22.   // provided IP to all DNS request
  23.   dnsServer.start(DNS_PORT, "*", apIP);

  24.   // replay to all requests with same HTML
  25.   webServer.onNotFound([]() {
  26.     webServer.send(200, "text/html", responseHTML);
  27.   });
  28.   webServer.begin();
  29. }

  30. void loop() {
  31.   dnsServer.processNextRequest();
  32.   webServer.handleClient();
  33. }
复制代码
源码如上
手机输入密码连接热点后,串口显示如下报错
  1. --------------- CUT HERE FOR EXCEPTION DECODER ---------------

  2. Exception (9):
  3. epc1=0x40208fea epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000006 depc=0x00000000

  4. >>>stack>>>

  5. ctx: cont
  6. sp: 3ffffe40 end: 3fffffc0 offset: 0190
  7. <<<stack<<<
复制代码
google说是内存未对齐,但是新手实在不知道从哪里下手
有没有哪位大哥可以帮小弟看看?


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 10:37 , Processed in 0.134050 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表