Select one of the symbols to view example projects that use it.
 
Outline
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "sdkconfig.h"
#include "soc/soc_caps.h"
#include "hal/cache_types.h"
#include "hal/mmu_types.h"
mmu_mem_region_t
g_mmu_mem_regions;
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_mm/ext_mem_layout.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
30
31
32
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <stdlib.h> #include <stdint.h> #include <stdbool.h> #include "sdkconfig.h" #include "soc/soc_caps.h" #include "hal/cache_types.h" #include "hal/mmu_types.h"7 includes #ifdef __cplusplus extern "C" { #endif typedef struct { uint32_t start; //laddr start uint32_t end; //laddr end size_t size; //region size cache_bus_mask_t bus_id; //bus_id mask, for accessible cache buses mmu_target_t targets; //region supported physical targets uint32_t caps; //vaddr capabilities }{ ... } mmu_mem_region_t; //These regions is referring to linear address extern const mmu_mem_region_t g_mmu_mem_regions[SOC_MMU_LINEAR_ADDRESS_REGION_NUM]; #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns: