22 lines
666 B
INI
22 lines
666 B
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:esp32cam]
|
|
platform = espressif32
|
|
board = esp32cam
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
build_flags =
|
|
-DBOARD_HAS_PSRAM
|
|
-mfix-esp32-psram-cache-issue
|
|
|