-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebuilding esp-idf libraries for Arduino #1531
Comments
Thanks! W Would I only have to copy the libesp32.a back to my Arduino setup if I make TCP and WiFi settings changes? There seems to be a lot of other libraries in my Arduino esp sdk directory... |
You need to copy any libraries that you modify. That issue was regarding clock speed, which lives only in libesp32.a. You will need liblwip.a if you modify the stack settings. If you follow those instructions (and compile with the exact same esp-idf files as was used for the latest arduino-esp32), it will not hurt anything to copy the whole set. |
What's the hold up in getting the idf 3.0+ components into ardunio? Last idf update was over 3 months ago. Anybody know if @me-no-dev is still working on this project? Thanks for any info. |
Idf just updated yesterday..super! |
@lbernstone Thanks a lot, got it working. Great care required to synch the arduino and idf setups. |
hello , i am trying to rebuild the idf library but seems like i have some difficults understand how to do i refered to this issues : and after i recompile and copy all lib*.a files from build folder, i get an error and can`t compile my code i am trying to disable CONFIG_SW_COEXIST_ENABLE for some testing
|
@megazero1316 @lbernstone I got the same problem as megazero1316. |
Hi, I am also trying to do the same and all my rebuilt libraries do not work in arduino.
and also: |
So I did a "git checkout" for esp-idf to the level of "Update IDF 3.2 to 7dd492319 + WiFi fix (#3177)" After I recompile a "blink" project I got: This seems to be related to commit in arduino component, which came AFTER "Update IDF 3.2 to 7dd492319"
|
Don't hijack closed issues. |
Yes sorry I realised that: I started there as someone else had the same issue: #3971 |
I need to improve the TCP/WiFi throughput of my ESP32 Arduino project.
It would seem that I need to make some changes to the esp32/tools/sd/sdkconfig file.
The esp-idf libraries for Arduino are pre compiled.
How do I recompile these libraries to reflect any changes I make to sdkconfig?
Thanks
The text was updated successfully, but these errors were encountered: