Replies: 2 comments
-
Since Platformio is using only stable release (currently core 2.0.16) and you try to use an example from branch master (which is rc candidate 3.0.0). This is not possible Use the examples from branch https://github.com/espressif/arduino-esp32/blob/release/v2.x/libraries/HTTPUpdate/examples/httpUpdate/httpUpdate.ino pin your platform! Like this
|
Beta Was this translation helpful? Give feedback.
-
I pinned as you told me in the .ini file [env:esp32dev] I even reinstalled the entire esp32 framework. but I still get the following errors:
Processing esp32dev (platform: espressif32 @ 6.7.0; board: esp32dev; framework: arduino)
|
Beta Was this translation helpful? Give feedback.
-
error compile httpUpdate exemple in platformio IDE
platform.ini file :
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
monitor_speed = 115200
upload_speed = 115200
lib_deps =
I use the following file as a source: https://github.com/espressif/arduino-esp32/blob/master/libraries/HTTPUpdate/examples/httpUpdate/httpUpdate.ino
but I have errors during compilation, however it works well under the arduino ide
Do you have any ideas to solve this problem? Thank you in advance for your suggestions.
Beta Was this translation helpful? Give feedback.
All reactions