-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
44 lines (40 loc) · 1.21 KB
/
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
; 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]
description = Magic-wand using puara framework
[common]
platform = espressif32
board = adafruit_feather_esp32s3_tft
framework = arduino
board_build.partitions = min_spiffs_no_OTA.csv
lib_deps =
Adafruit NeoPixel
Adafruit GFX Library
adafruit/Adafruit ST7735 and ST7789 Library
Adafruit BNO055
https://github.com/Puara/puara-module.git
https://github.com/cnmat/OSC#3.5.8
monitor_speed = 115200
monitor_echo = yes
monitor_filters = default esp32_exception_decoder
; Common build flags
[flags]
build_flags =
-std=gnu++2a
build_unflags =
-std=c++11 -std=c++14 -std=c++17 -std=gnu++11 -std=gnu++14 -std=gnu++17
; Template environment, extend this for specific boards
[env:magicwand]
extends = common
build_flags =
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
${flags.build_flags}
build_unflags = ${flags.build_unflags}