Great.
May I know what offset should I use to write_flash? Example, what offset should I use so that I do not overwrite existing data? Does "write_flash" function auto-detect the next available offset to start writing? Is there a function I should run before write_flash so that I can see the next available offset?
Below are what i think are the attributes of args for "write_flash" optional arguments, and "write_flash" possible values and defaults. Am I correct?
Code: Select all
Attributes Possible Values Default Value
========= ============= =============
args.erase_all True,False True
args.flash_freq keep,40m,26m,20m,80m ?
args.flash_mode keep,qio,qout,dio,dout ?
args.flash_size 1MB,2MB,4MB,8MB,16M args.size
+ESP8266-only 256KB,512KB,2MB-c1,4MB-c1
args.spi_connection ESP32-only argument. None?
SPI, HSPI or [CLK,Q,D,HD,CS]
args.no_progress True,False True
args.verify True,False True
args.compress True,False None else if args.no_stub ?
args.no_compress True,False ?
What is args.no_stub?