esp32cam-demo/platformio.ini

25 wiersze
799 B
INI
Czysty Zwykły widok Historia

2021-11-21 21:21:37 +00:00
; 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:esp32cam]
platform = espressif32
board = esp32cam
framework = arduino
2022-01-18 07:45:07 +00:00
build_flags =
${env.build_flags}
2022-01-23 15:53:02 +00:00
-D SSID_NAME=\"wifi ssid\" ; wifi details
-D SSID_PASWORD=\"wifi password\"
2022-01-18 07:45:07 +00:00
-w ;supress all warnings
2022-01-23 15:53:02 +00:00
-DCORE_DEBUG_LEVEL=2
2022-01-18 07:45:07 +00:00
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
lib_deps =
2022-01-23 15:53:02 +00:00
esp32-camera