Merge pull request #4011 from dheera/main

prevents going into safe mode for watchdog resets
This commit is contained in:
Scott Shawcroft 2021-01-20 11:30:12 -08:00 committed by GitHub
commit eff68b0d9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -143,9 +143,9 @@ safe_mode_t port_init(void) {
case ESP_RST_BROWNOUT:
return BROWNOUT;
case ESP_RST_PANIC:
return HARD_CRASH;
case ESP_RST_INT_WDT:
case ESP_RST_WDT:
return HARD_CRASH;
default:
break;
}