My Project
 All Classes Functions Variables Pages
MMU.h
1 /*
2  * MMU.h
3  *
4  * Created on: Jun 30, 2018
5  * Author: kolban
6  */
7 
8 #ifndef COMPONENTS_CPP_UTILS_MMU_H_
9 #define COMPONENTS_CPP_UTILS_MMU_H_
10 #include <esp_attr.h>
11 #include <stdint.h>
12 #include <unistd.h>
13 
14 class MMU {
15 public:
16  MMU();
17  virtual ~MMU();
18  static void dump();
19  static void mapFlashToVMA(uint32_t flashOffset, void* vma, size_t size);
20 };
21 
22 #endif /* COMPONENTS_CPP_UTILS_MMU_H_ */
Definition: MMU.h:14
static void mapFlashToVMA(uint32_t flashOffset, void *vma, size_t size)
Definition: MMU.cpp:124