Home
last modified time | relevance | path

Searched refs:updaterate (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.5.0/components/wear_levelling/doc/
Dwl_sw_structure.rst49 - updaterate - amount of erase cycles to execute the relocation procedure.
72 Every erase operation will be counted by erase counter. When this counter reached the *updaterate* …
74 When the Dummy page will be at last page in the memory and erase counter will reach the updaterate,…
75 Bellow shown the example with 4 available memory pages. Every state after updaterate erases. The X …
/hal_espressif-3.5.0/components/wear_levelling/private_include/
DWL_Config.h37 uint32_t updaterate; /*!< Amount of accesses before block will be moved*/ member
/hal_espressif-3.5.0/components/wear_levelling/
DWL_Flash.cpp55 cfg->updaterate, in config()
280 this->state.max_count = this->flash_size / this->state_size * this->cfg.updaterate; in initSections()
281 if (this->cfg.updaterate != 0) { in initSections()
282 this->state.max_count = this->cfg.updaterate; in initSections()
Dwear_levelling.cpp86 cfg.updaterate = WL_DEFAULT_UPDATERATE; in wl_mount()