raburton / rboot

An open source bootloader for the ESP8266
https://richard.burtons.org/tag/rboot/?order=ASC
MIT License
300 stars 72 forks source link

Why rboot need up to addr 0x2000? #34

Closed daffysub closed 7 years ago

daffysub commented 7 years ago

Hello Raburton,

Why have you specify that rboot is placed between addr 0x00000 and 0x2000? Ok for addr 0x0000 but the bootloader and the structure fo rboot config don't really need of all that?

raburton commented 7 years ago

rBoot needs about half a sector. The config needs very little space, but needs to be in a separate sector so when it is rewritten there is no risk of losing the bootloader itself.

On 26 Apr 2017 9:03 am, "daffysub" notifications@github.com wrote:

Hello Raburton,

Why have you specify that rboot is placed between addr 0x00000 and 0x2000? The bootloader and the structure fo rboot config don't really need of all that?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/raburton/rboot/issues/34, or mute the thread https://github.com/notifications/unsubscribe-auth/AAadh85ky1kSQ2qXnPST9JbAhS06m1utks5rzvpCgaJpZM4NIgJl .

daffysub commented 7 years ago

OK Thank you for your response.