2016-08-18 10:07:46 +00:00
|
|
|
PROGRAM=sysparam_editor
|
|
|
|
|
|
|
|
# Setting this to 1..3 will add extra debugging output to stdout
|
|
|
|
EXTRA_CFLAGS=-DSYSPARAM_DEBUG=0
|
|
|
|
|
|
|
|
include ../../common.mk
|
|
|
|
|
|
|
|
# `make dump-flash` can be used to view the current contents of the sysparam
|
|
|
|
# regions in flash.
|
|
|
|
dump-flash:
|
2017-07-31 23:16:12 +00:00
|
|
|
esptool.py read_flash 0x1f7000 8192 r1.bin
|
2016-08-18 10:07:46 +00:00
|
|
|
hexdump -C r1.bin
|
2017-07-31 23:16:12 +00:00
|
|
|
esptool.py read_flash 0x1f9000 8192 r2.bin
|
2016-08-18 10:07:46 +00:00
|
|
|
hexdump -C r2.bin
|