esp32s3: sync memprot header from esp32s2, fixing compilation error

Since 497b730e8f, panic_handler.c calls
esp_memprot_get_active_intr_memtype instead of
esp_memprot_is_assoc_intr_any.
This commit is contained in:
Ivan Grokhotkov
2020-10-08 22:20:39 +02:00
parent e0261f18ce
commit aa489dba07
2 changed files with 166 additions and 28 deletions

View File

@@ -17,8 +17,9 @@
*/
#include <stdbool.h>
#include "esp32s3/memprot.h"
bool esp_memprot_is_assoc_intr_any(void)
mem_type_prot_t IRAM_ATTR esp_memprot_get_active_intr_memtype(void)
{
return true;
return MEMPROT_NONE;
}