mirror of
https://github.com/easytarget/esp32-cam-webserver.git
synced 2024-02-16 18:18:24 +08:00

* Slightly longer flash delay, #188 * Framebuffer delayed frames * Fix Travis, again * show XCLK in dump output * comment on slow XCLK for slow clones * pump up the wifi watchdog default * latest IDE and esp core
28 lines
1.0 KiB
INI
28 lines
1.0 KiB
INI
; PlatformIO Project Configuration File
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
|
|
; The esp32-cam-webserver project is intended to be easily compilable
|
|
; with the stock Arduino IDE.
|
|
; - Maintaining compatibility with other development environments
|
|
; is important, but I wont accept changes to the PlatformIO build that
|
|
; break compatibilty with the stock IDE. Eg by using non-standard
|
|
; partition schemes or overriding Arduino defined limits, etc.
|
|
|
|
[platformio]
|
|
src_dir = ./
|
|
|
|
[env:esp32dev]
|
|
platform = https://github.com/platformio/platform-espressif32.git#feature/arduino-upstream
|
|
platform_packages = framework-arduinoespressif32@https://github.com/espressif/arduino-esp32.git#2.0.2
|
|
board = esp32dev
|
|
board_build.partitions = min_spiffs.csv
|
|
framework = arduino
|
|
build_flags =
|
|
-DBOARD_HAS_PSRAM
|
|
-mfix-esp32-psram-cache-issue
|
|
; For OTA uploading uncomment the next lines and add the IP address or mDNS name of the camera module, and the OTA password
|
|
;upload_protocol = espota
|
|
;upload_port = <IP or mDNS>
|
|
;upload_flags =
|
|
; --auth=<OTA PASSWORD>
|