-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
46 lines (42 loc) · 951 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
; ESP32 Camera CLI
; https://github.com/hpsaturn/esp32-camera-cli
; @Hpsaturn 2024
[env]
build_type = release
platform = [email protected]
framework = arduino
monitor_speed = 115200
monitor_filters =
esp32_exception_decoder
; time
build_flags =
-Wall
-Wextra
-Werror
-D CORE_DEBUG_LEVEL=0
-D BOARD_HAS_PSRAM=1
-D SHELLMINATOR_BUFF_LEN=70
-D SHELLMINATOR_BUFF_DIM=70
-D SHELLMINATOR_LOGO_COLOR=YELLOW
-D COMMANDER_MAX_COMMAND_SIZE=70
-D WCLI_MAX_CMDS=12
lib_deps =
hpsaturn/EspNowCam@^0.1.12
hpsaturn/ESP32 Wifi CLI @^0.3.2
hpsaturn/EasyPreferences @^0.1.2
[esp32common]
extends = env
board = esp32-s3-devkitc-1
[xiao-common]
extends = esp32common
board_build.arduino.memory_type = dio_opi ;
board_build.flash_size = 8MB
build_flags =
${env.build_flags}
-DARDUINO_USB_CDC_ON_BOOT=1
-DARDUINO_USB_MODE=1
[env:xiao-camera]
extends = xiao-common
lib_deps =
${esp32common.lib_deps}
mathertel/OneButton@^2.0.3