Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_err.h"
#define ESP_ERR_MEMPROT_MEMORY_TYPE_INVALID
#define ESP_ERR_MEMPROT_SPLIT_ADDR_INVALID
#define ESP_ERR_MEMPROT_SPLIT_ADDR_OUT_OF_RANGE
#define ESP_ERR_MEMPROT_SPLIT_ADDR_UNALIGNED
#define ESP_ERR_MEMPROT_UNIMGMT_BLOCK_INVALID
#define ESP_ERR_MEMPROT_WORLD_INVALID
#define ESP_ERR_MEMPROT_AREA_INVALID
#define ESP_ERR_MEMPROT_CPUID_INVALID
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/include/esp_memprot_err.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_err.h" #ifdef __cplusplus extern "C" { #endif /** * @brief ESP Memprot API error code definition *//* ... */ #define ESP_ERR_MEMPROT_MEMORY_TYPE_INVALID (ESP_ERR_MEMPROT_BASE + 1) /**< Memory type invalid in given context */ #define ESP_ERR_MEMPROT_SPLIT_ADDR_INVALID (ESP_ERR_MEMPROT_BASE + 2) /**< Splitting address invalid in given context */ #define ESP_ERR_MEMPROT_SPLIT_ADDR_OUT_OF_RANGE (ESP_ERR_MEMPROT_BASE + 3) /**< Splitting address out of range */ #define ESP_ERR_MEMPROT_SPLIT_ADDR_UNALIGNED (ESP_ERR_MEMPROT_BASE + 4) /**< Splitting address not aligned to required boundaries */ #define ESP_ERR_MEMPROT_UNIMGMT_BLOCK_INVALID (ESP_ERR_MEMPROT_BASE + 5) /**< Required unified-management block is not valid */ #define ESP_ERR_MEMPROT_WORLD_INVALID (ESP_ERR_MEMPROT_BASE + 6) /**< Required World identifier is not valid */ #define ESP_ERR_MEMPROT_AREA_INVALID (ESP_ERR_MEMPROT_BASE + 7) /**< Required Area identifier is not valid */ #define ESP_ERR_MEMPROT_CPUID_INVALID (ESP_ERR_MEMPROT_BASE + 8) /**< Required CPU/Core identifier is not valid */8 defines #ifdef __cplusplus }{...} #endif
Details