esp-idf/components/esp_hw_support/port/esp32s3/memprot.c
2021-08-05 15:01:26 +02:00

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;
}