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