You can chat about native SDK questions and issues here.

User avatar
By Agentsmithers
#67918 Hi Everyone,
Does anyone have any idea on how to create a FOTA compiled version of nonOS sdk?
In the esp-open-sdk there is a Blinky Example that can be used but it only apperas to compile a single .Bin file vs. FOTA requiring a User1.bin and User2.bin. I am not sure if I am missing something in the make file or what. Can anyone clue me in. It would be much appreciated.

Edit: I found this

https://espressif.com/sites/default/fil ... de_en_.pdf

[Page 15/21]

user1.bin and user2.bin are generated by the same application program using
different compiling procedures. The binaries are stored in different locations in the SPI
Flash. Both of them can run on the system.


What on earth is that procedure? It seems they are talking about an altered makefile?

I'm not sure if this is against the board rules or anything but if anyone can help me compile my firmware I will paypal them 50 bucks/USD :), I have burned months of my time trying to figure this ****ing thing out.
Skype = DesertComputerAgents
User avatar
By davydnorris
#67957 This is my Makefile (modified version based heavily on work by CHERTS) for NonOS projects. You can use this as the basis of your own compile.

Up top you can see options for setting the size of your flash, and how to compile - for area 1 or area 2 in a FOTA build, or 0 for a non FOTA. Your current blinky is being built for a non FOTA build

Hope this helps
You do not have the required permissions to view the files attached to this post.
User avatar
By Agentsmithers
#67958
martinayotte wrote:Accomplish such project would be way easier using Arduino ESP framework ...
OTA is a simple as this example :
https://github.com/esp8266/Arduino/blob ... sicOTA.ino


Yes Sir, I appreciate the feedback. I've already vested a large amount of time into what I currently have so I'm going to keep down this path. I very very much again appreciate your assistance.