esp32多任务如何喂狗?避免超时重启-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 471|回复: 0

[未解决] esp32多任务如何喂狗?避免超时重启

[复制链接]
发表于 2022-6-12 20:11 | 显示全部楼层 |阅读模式
如题,任务用时较长,导至超时重启,如何解决,请大神指教,谢谢。出错信息如下:
Guru Meditation Error: Core  0 panic'ed (Interrupt wdt timeout on CPU0).

程序为:
TaskHandle_t *task1;
void setup() {
  // put your setup code here, to run once:
//创建任务
  //指定在核心0上执行Task1_blink任务
  xTaskCreatePinnedToCore(Task1_blink,  "blink",    10240,    NULL,    0,    task1,   0   );
}

void loop() {
  // put your main code here, to run repeatedly:

}

/*---------------------- 定义任务 ---------------------*/

void Task1_blink(void *pvParameters)  // This is a task.
{
   (void) pvParameters;
int i=0;
for(;;){
    i++;
    i--;
  }
}
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 02:38 , Processed in 0.069586 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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