41 lines
809 B
INI
41 lines
809 B
INI
;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]
|
|
src_dir = examples/AXP2101_Example
|
|
default_envs=esp32s3
|
|
|
|
[env]
|
|
lib_extra_dirs = .
|
|
|
|
upload_speed = 921600
|
|
monitor_speed = 115200
|
|
|
|
monitor_port = COM169
|
|
upload_port = COM169
|
|
|
|
; build_flags =
|
|
; -DCONFIG_PMU_SDA=15
|
|
; -DCONFIG_PMU_SCL=7
|
|
; -DCONFIG_PMU_IRQ=6
|
|
|
|
[env:esp32dev]
|
|
platform = espressif32
|
|
framework = arduino
|
|
board = esp32dev
|
|
|
|
[env:esp32s3]
|
|
platform = espressif32
|
|
framework = arduino
|
|
board = esp32-s3-devkitc-1
|
|
|
|
|
|
|
|
|