From 3660505c006c67fbdac200df0a64a2194a4fcd4e Mon Sep 17 00:00:00 2001 From: Armando Date: Mon, 27 Feb 2023 19:28:36 +0800 Subject: [PATCH] added esp_mm, esp_psram component description --- components/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/README.md b/components/README.md index 40b96b5a8a..dfb7ad09dc 100644 --- a/components/README.md +++ b/components/README.md @@ -102,6 +102,18 @@ Example: - `malloc` is implemented in terms of the component `heap`'s functions - `gettimeofday` is implemented in terms of system time in `esp_system` +#### `esp_mm` + +Memory management. Currently, this encompasses: + +- Memory mapping for MMU supported memories +- Memory synchronisation via Cache +- Utils such as APIs to convert between virtual address and physical address + +#### `esp_psram` + +Contains implementation of PSRAM services + #### `esp_system` Contains implementation of system services and controls system behavior. The implementations