mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
18 lines
365 B
C
18 lines
365 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* INTERNAL API
|
|
* implementation of generic interface to MMU memory protection features
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include "esp32s3/memprot.h"
|
|
|
|
mem_type_prot_t IRAM_ATTR esp_memprot_get_active_intr_memtype(void)
|
|
{
|
|
return MEMPROT_NONE;
|
|
}
|