2021-06-02 16:34:38 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-07-23 13:40:10 +08:00
|
|
|
|
|
|
|
/* INTERNAL API
|
|
|
|
* implementation of generic interface to MMU memory protection features
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2020-10-08 22:20:39 +02:00
|
|
|
#include "esp32s3/memprot.h"
|
2020-07-23 13:40:10 +08:00
|
|
|
|
2020-10-08 22:20:39 +02:00
|
|
|
mem_type_prot_t IRAM_ATTR esp_memprot_get_active_intr_memtype(void)
|
2020-07-23 13:40:10 +08:00
|
|
|
{
|
2020-10-08 22:20:39 +02:00
|
|
|
return MEMPROT_NONE;
|
2020-07-23 13:40:10 +08:00
|
|
|
}
|