Home
last modified time | relevance | path

Searched refs:erase (Results 1 – 18 of 18) sorted by relevance

/mcuboot-latest/docs/release-notes.d/
Dcompatible-slots.md3 - Added optional erase size checking to ensure expected sizes
5 - Added debug logs for zephyr to output discrepencies in erase
Dzephyr-auto-max-sectors.md2 of sectors that are needed for a build by checking the erase
/mcuboot-latest/boot/zephyr/boards/
Dnrf52840dk_ram.overlay32 erase-value = <0xff>;
37 erase-block-size = <4096>;
Dnrf52840dk_ram_multi.overlay40 erase-value = <0xff>;
45 erase-block-size = <4096>;
/mcuboot-latest/sim/simflash/src/
Dlib.rs55 fn erase(&mut self, offset: usize, len: usize) -> Result<()>; in erase() method
152 fn erase(&mut self, offset: usize, len: usize) -> Result<()> { in erase() method
328 flash.erase(0, sectors[0].size).unwrap(); in test_device()
330 flash.erase(0, flash_size).unwrap(); in test_device()
331 assert!(flash.erase(0, sectors[0].size - 1).is_bounds()); in test_device()
339 flash.erase(0, sectors[0].size).unwrap(); in test_device()
/mcuboot-latest/boot/zephyr/
DCMakeLists.txt382 dt_prop(erase_size_slot0 PATH "${slot0_flash}" PROPERTY "erase-block-size")
400 dt_prop(erase_size_slot1 PATH "${slot1_flash}" PROPERTY "erase-block-size")
418 …message(WARNING "Unable to determine erase size of slot0 partition, cannot calculate minimum secto…
427 …message(WARNING "Unable to determine erase size of slot1 partition, cannot calculate minimum secto…
462 # Check both slots for the one with the largest write/erase block size
463 dt_prop(erase_size_slot0 PATH "${slot0_flash}" PROPERTY "erase-block-size")
465 dt_prop(erase_size_slot1 PATH "${slot1_flash}" PROPERTY "erase-block-size")
492 dt_prop(erase_size PATH "${slot0_flash}" PROPERTY "erase-block-size")
496 dt_prop(erase_size PATH "${slot0_flash}" PROPERTY "erase-block-size")
501 …message(WARNING "Unable to determine erase size of slot0 or slot1 partition, setting to 1 (this is…
DKconfig.serial_recovery107 on some hardware that has long erase times, to prevent long wait
127 bool "Enable storage erase command"
129 The option enables mcumgr command that allows to erase storage
DKconfig443 be calculated automatically from the flash erase sizes and size of each partition for
/mcuboot-latest/docs/
Dtestplan-zephyr.md21 Begin by doing a full erase, and programming the bootloader itself:
23 $ pyocd erase --chip
Dtestplan-mynewt.md156 * Mass erase MCU
158 $ pyocd erase --chip
Dreadme-zephyr.md76 on the target and flash tool used, this might erase the whole of the flash
77 memory (mass erase) or only the sectors where the bootloader resides prior to
122 not perform a mass erase (erasing the whole of the flash) or else you would be
251 * Storage erase - This command allows erasing the storage partition (enable with ``CONFIG_BOOT_MGMT…
DPORTING.md13 get the flash's minimum write size, and read/write/erase individual sectors.
Drelease-notes.md409 - Add an option to erase flash pages progressively during recovery to
467 - Overwrite-only mode was updated to erase/copy only sectors that
Dreadme-espressif.md363 the use of Download Mode functions to simple flash read, write and erase operations.*
511 use of Download Mode functions to simple flash read, write and erase operations.*
/mcuboot-latest/boot/cypress/MCUBootApp/
DExternalMemory.md22 * The slot size for upgrade slot is even (or smaller) to erase size (0x40000) of given memory modul…
55 **Note 2**: make sure secondary slot start address is aligned (or smaller) to erase size (0x40000 -…
/mcuboot-latest/boot/mbed/src/
Dflash_map_backend.cpp198 return bd->erase(off, len); in flash_area_erase()
/mcuboot-latest/sim/mcuboot-sys/src/
Dapi.rs277 rc = map_err(dev.erase(offset as usize, size as usize)); in sim_flash_erase()
/mcuboot-latest/sim/src/
Dimage.rs1916 dev.erase(offset, slot_len).unwrap(); in install_image()
1941 dev.erase(offset, slot_len).unwrap(); in install_image()