2022-09-12 12:02:21 +00:00
|
|
|
; Common settings for ESP targes, mixin with extends = esp32_base
|
|
|
|
[esp32_base]
|
|
|
|
extends = arduino_base
|
|
|
|
platform = espressif32
|
|
|
|
build_src_filter =
|
|
|
|
${arduino_base.build_src_filter} -<platform/nrf52/> -<platform/stm32wl> -<platform/rp2040>
|
2022-09-19 07:36:13 +00:00
|
|
|
upload_speed = 921600
|
2022-09-12 12:02:21 +00:00
|
|
|
debug_init_break = tbreak setup
|
2022-09-23 17:52:07 +00:00
|
|
|
monitor_filters = esp32_exception_decoder
|
2022-09-12 12:02:21 +00:00
|
|
|
|
|
|
|
# Remove -DMYNEWT_VAL_BLE_HS_LOG_LVL=LOG_LEVEL_CRITICAL for low level BLE logging.
|
|
|
|
# See library directory for BLE logging possible values: .pio/libdeps/tbeam/NimBLE-Arduino/src/log_common/log_common.h
|
|
|
|
# This overrides the BLE logging default of LOG_LEVEL_INFO (1) from: .pio/libdeps/tbeam/NimBLE-Arduino/src/esp_nimble_cfg.h
|
|
|
|
build_flags =
|
|
|
|
${arduino_base.build_flags}
|
|
|
|
-Wall
|
|
|
|
-Wextra
|
|
|
|
-Isrc/platform/esp32
|
|
|
|
-std=c++11
|
|
|
|
-DLOG_LOCAL_LEVEL=ESP_LOG_DEBUG
|
|
|
|
-DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
|
|
|
|
-DMYNEWT_VAL_BLE_HS_LOG_LVL=LOG_LEVEL_CRITICAL
|
|
|
|
-DAXP_DEBUG_PORT=Serial
|
|
|
|
-DCONFIG_BT_NIMBLE_ENABLED
|
|
|
|
-DCONFIG_NIMBLE_CPP_LOG_LEVEL=2
|
|
|
|
-DCONFIG_BT_NIMBLE_MAX_CCCDS=20
|
|
|
|
|
|
|
|
lib_deps =
|
|
|
|
${arduino_base.lib_deps}
|
|
|
|
${networking_base.lib_deps}
|
|
|
|
${environmental_base.lib_deps}
|
|
|
|
https://github.com/caveman99/esp32_https_server.git
|
|
|
|
h2zero/NimBLE-Arduino@1.4.0
|
|
|
|
arduino-libraries/NTPClient@^3.1.0
|
|
|
|
https://github.com/lewisxhe/XPowersLib.git
|
|
|
|
|
|
|
|
lib_ignore =
|
|
|
|
segger_rtt
|
|
|
|
ESP32 BLE Arduino
|
|
|
|
|
|
|
|
; leave this commented out to avoid breaking Windows
|
|
|
|
;upload_port = /dev/ttyUSB0
|
|
|
|
;monitor_port = /dev/ttyUSB0
|
|
|
|
|
|
|
|
; Please don't delete these lines. JM uses them.
|
|
|
|
;upload_port = /dev/cu.SLAB_USBtoUART
|
|
|
|
;monitor_port = /dev/cu.SLAB_USBtoUART
|
|
|
|
|
|
|
|
; customize the partition table
|
|
|
|
; http://docs.platformio.org/en/latest/platforms/espressif32.html#partition-tables
|
|
|
|
board_build.partitions = partition-table.csv
|