esp32开发与应用(看门狗测试)

【 声明:版权所有,欢迎转载,请勿用于商业用途。 联系信箱:feixiaoxing @163.com】

不管是mcu,还是soc,看门狗都是系统常用的一种监控手段。看门狗初始化之后,如果不能在指定的时间内重启,那么系统会默认当前cpu已经跑飞,立即重启系统。这对于一些无人值守的设备,具有很大的价值。当然很多时候,看门狗也不能滥用,对于一般bug、有规律的bug、低概率的bug,最好还是找出root cause,只有实在解决不了的问题,才动用watchdog,这样比较好。

1、esp32的看门狗

相比较其他mcu的看门狗,esp32的看门狗不仅可以监控主task,还可以监控一般的task。这也就是说,不管是哪个task,只要在规定的时间内都没有完成喂狗动作,那么都会造成系统重启。

2、利用ai编写代码

知道这个基本原理之后,就可以让ai给我们编写一段sample代码。告诉ai,用esp-idf编写一段看门狗的demo,这样不出意外的话,我们就可以看到这样的代码,

复制代码
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_task_wdt.h"

// Monitored task
void monitored_task(void *pvParameters) {
    // 1. Add the current task to TWDT watch list
    TaskHandle_t current_task = xTaskGetCurrentTaskHandle();
    esp_task_wdt_add(current_task);
    printf("Monitored task has been added to TWDT.\n");
    
    while (1) {
        // 2. Perform the core work of the task...
        printf("Monitored task is running...\n");
        
        // 3. Feed the watchdog periodically (e.g., every 2 seconds)
        esp_task_wdt_reset();
        printf("Monitored task fed the watchdog.\n");
        vTaskDelay(pdMS_TO_TICKS(2000));
    }
    
    // Delete from TWDT when the task ends (this is never reached in infinite loop)
    esp_task_wdt_delete(current_task);
    vTaskDelete(NULL);
}

void app_main(void) {
    // Initialize TWDT
    esp_task_wdt_config_t twdt_config = {
        .timeout_ms = 5000,                  // 5 seconds timeout
        .idle_core_mask = (1 << portNUM_PROCESSORS) - 1, // Monitor idle tasks on all cores
        .trigger_panic = true,               // Trigger panic (and restart) on timeout
    };
    esp_task_wdt_init(&twdt_config);
    
    // Optionally add the main task (app_main) to the watch list
    esp_task_wdt_add(NULL);  // Add the current (main) task to TWDT
    
    // Create a custom monitored task
    xTaskCreate(monitored_task, "monitored_task", 4096, NULL, 5, NULL);
    
    while (1) {
        // Main task also feeds the watchdog
        esp_task_wdt_reset();
        printf("Main task fed the watchdog.\n");
        vTaskDelay(pdMS_TO_TICKS(3000));
    }
}

3、编译、下载和修改

测试的时候分成两步。第一步,先完成编译、下载和测试。看看编译有没有问题,下载是不是ok,观察运行是不是对的。完成这一步之后,就可以做第二步。即,修改代码。比如主task关闭喂狗,或者是子task关闭喂狗,看看对系统有没有影响,有什么样的影响。

这样反复多测试几次,就会对看门狗程序有比较深刻的体会。

相关推荐
IvorySQL5 分钟前
IvorySQL HTAP 实时湖仓接入引擎
数据库·postgresql·开源·htap·ivorysql
忧郁的紫菜8 分钟前
WCF+JSON+实体对象与WebService+DataSet效率大比拼
数据库·oracle·json
Tian_Hang27 分钟前
Eclipse Ditto 的权限策略
java·服务器·前端·网络·ide·ubuntu·eclipse
叩码以求索33 分钟前
经典算法实例分析:写字符串需要的行数
开发语言·javascript·ecmascript
IvorySQL38 分钟前
PostgreSQL 技术日报|2026-07-05
数据库·postgresql
我是唐青枫1 小时前
Kotlin 运算符重载详解:为什么 a += b 有时改对象,有时换对象?
开发语言·kotlin
小蓝波1 小时前
docker 的命令
java·docker·容器
2zcode1 小时前
基于MATLAB图像处理的饮料瓶识别与价格显示系统设计与实现
开发语言·图像处理·matlab
AI人工智能+电脑小能手1 小时前
【大白话说Java面试题 第155题】【06_Spring篇】第15题:Spring 如何解决循环依赖问题?
java·spring·循环依赖·三级缓存·aop代理
骑士雄师1 小时前
大模型:临时会话
开发语言·python