-
Notifications
You must be signed in to change notification settings - Fork 10
/
platformio.ini
31 lines (30 loc) · 871 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
; 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
[env:m5paper]
platform = espressif32
board = m5stack-fire
board_build.flash_mode = qio
board_build.f_flash = 80000000L
framework = arduino
upload_speed = 2000000
platform_packages =
framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git
monitor_speed = 115200
build_flags =
-std=gnu++17
-Ofast
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
build_unflags =
-std=gnu++11
lib_deps =
https://github.com/lovyan03/LovyanGFX
m5stack/M5EPD@^0.1.1
bblanchon/ArduinoJson@5.13.4