kolban wrote:Rather I am wondering if there isn't some area of flash memory that is architected for storing app specific information.
There isn't. Assuming you're not using OTA, you can use the space from address 0 in Flash all the way up to the system parameter area (16K from the end of Flash) however you'd like.
If you want to reserve a 4K block immediately preceding the system parameter area for your app's non-volatile data you can do that. You'll have to keep an eye on the size of you app to make sure it doesn't overlap your "reserved" block *or* you can modify the linker script to reflect the smaller size.
In the linker script you'll find a section like this:
Code: Select allMEMORY
{
dport0_0_seg : org = 0x3FF00000, len = 0x10
dram0_0_seg : org = 0x3FFE8000, len = 0x14000
iram1_0_seg : org = 0x40100000, len = 0x8000
irom0_0_seg : org = 0x40240000, len = 0x3C000
}
The irom0_0_seg line is the important one for this discussion. The line shown gives the address of the irom0 section and its length. The org parameter gives starting address in terms of the Flash chip as it is mapped into the esp8266 address space where address 0 of the Flash chip is 0x40200000 of the address space. You can see, then, that the irom0 section begins at 0x40000 and its length is given as 0x3c000, nestling right up to the system parameter area at 0x7c000 (this is for a 512KB Flash chip).
You can reserve 4K of Flash by simply changing the length if the irom0 section to 0x3b000. Note, however, that there really isn't any good reason for irom0 to begin at 0x40000. Any address after 64KB is fine so you could set the beginning of irom0 to 0x10000 and make its length 0x6b000 leaving 4K free preceding the system parameter area.
If you make a change to the start of irom0 like this you'll have to remember to modify the parameters accordingly when you download the app to the chip.