-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
60 lines (49 loc) · 1.38 KB
/
platformio.ini
File metadata and controls
60 lines (49 loc) · 1.38 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
; 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
[platformio]
lib_dir = .
src_dir = examples/ModemTest
[env:esp32-s3]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/54.03.20/platform-espressif32.zip
board = esp32-s3-devkitc-1
framework = arduino
; Tests
; Ignore Unity library to avoid conflicts with source code due to lib_dir = .
lib_ignore = Unity
; test_ignore =
; Config ESP32
board_build.f_flash = 80000000L
board_build.f_cpu = 240000000L
board_build.partitions = default_16MB.csv
board_build.arduino.memory_type = qio_opi
board_upload.flash_size = 16MB
board_upload.maximum_size = 16777216
; Serial monitor
monitor_speed = 115200
upload_speed = 921600
monitor_filters =
esp32_exception_decoder
log2file
; Flags
build_flags =
-Wall
-Wextra
-Werror
; Enable debug (ESP-IDF logs)
; -DUSE_ESP_IDF_LOG
; -DCORE_DEBUG_LEVEL=5
; -DCONFIG_LOG_COLORS
; Enable PSRAM
-DBOARD_HAS_PSRAM
; Enable USB CDC on boot
-DARDUINO_USB_CDC_ON_BOOT=1
; Enable library debug (for ESP32)
-DSIM7600_LOG_LEVEL=5
-DSIM7600_LOG_VERBOSE_ERROR_CODES