add soft solution for esp32 eco3 live lock issue

This commit is contained in:
Li Shuai
2020-06-18 10:30:28 +08:00
committed by bot
parent dbbffc816a
commit bb7752fc10
7 changed files with 339 additions and 4 deletions

View File

@@ -402,3 +402,8 @@ void esp_chip_info(esp_chip_info_t* out_info)
out_info->features |= CHIP_FEATURE_EMB_FLASH;
}
}
inline bool soc_has_cache_lock_bug(void)
{
return (esp_efuse_get_chip_ver() == 3);
}