Searched refs:next_write (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | stub_write_flash.c | 25 uint32_t next_write; member 202 fs.next_write = offset; in handle_flash_begin() 340 last_sector = (fs.next_write + length) / FLASH_SECTOR_SIZE; in handle_flash_data() 350 res = SPIWrite4B(1, fs.next_write, data_buf, length); in handle_flash_data() 352 res = SPIWrite(fs.next_write, data_buf, length); in handle_flash_data() 355 res = SPIWrite(fs.next_write, data_buf, length); in handle_flash_data() 359 fs.next_write += length; in handle_flash_data() 390 last_sector = (fs.next_write + length) / FLASH_SECTOR_SIZE; in handle_flash_encrypt_data() 399 res = esp_rom_spiflash_write_encrypted(fs.next_write, data_buf, length); in handle_flash_encrypt_data() 401 res = SPI_Encrypt_Write(fs.next_write, data_buf, length); in handle_flash_encrypt_data() [all …]
|