有哪位大佬知道 看门狗不起作用-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1470|回复: 0

有哪位大佬知道 看门狗不起作用

[复制链接]
发表于 2021-5-13 12:02 | 显示全部楼层 |阅读模式
  1. #include <Ticker.h>
  2. #include <WiFi.h>

  3. Ticker secondTick;
  4. int watchdogCount = 0;  

  5. void ISRwatchdog(){
  6.   watchdogCount++;
  7.   if (watchdogCount == 5){
  8.     Serial.println();
  9.     Serial.println("the wachdog biter!!!!!!!");
  10.     ESP.restart();
  11.     }
  12.    }


  13. void setup() {
  14.   // put your setup code here, to run once:
  15.   Serial.begin(115200);
  16.   secondTick.attach(1, ISRwatchdog);
  17.   WiFi.mode(WIFI_STA);
  18.   WiFi.disconnect();

  19. }

  20. void loop() {
  21.   // put your main code here, to run repeatedly:
  22.   Serial.printf("Watchdog counter= %d\n", watchdogCount);
  23.   delay(1000);  
  24. }
复制代码



WiFi.mode(WIFI_STA);  加入这行之后看门狗就不会自动重启了  那位大佬知道 这是什么问题   端口打印一直是 Watchdog counter=5
去掉这行之后 就会自动重启了  

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

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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