soc: esp32: fix flash write blocks size
Current write block size does not guarantee proper write operation, what might cause corrupted data. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
This commit is contained in:
parent
1a246ba5c0
commit
fdd47f39be
|
@ -83,7 +83,7 @@
|
|||
label = "FLASH_ESP32";
|
||||
reg = <0 0x400000>;
|
||||
erase-block-size = <4096>;
|
||||
write-block-size = <4>;
|
||||
write-block-size = <32>;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue