-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
65 lines (63 loc) · 1.51 KB
/
platformio.ini
File metadata and controls
65 lines (63 loc) · 1.51 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
61
62
63
64
65
[platformio]
default_envs = atomic14-esp32-rainbow-01
[common]
platform = [email protected]
framework = arduino
monitor_speed = 115200
build_flags =
-std=c++17
-std=gnu++17
-O3
-ffast-math
-Wl,-Map,output.map
build_unflags =
-std=gnu++11
-fno-rtti
lib_deps =
bblanchon/ArduinoJson@^7.4.1
SPI
https://github.com/bitbank2/JPEGDEC#1.7.0
adafruit/Adafruit seesaw Library
adafruit/Adafruit BusIO
Wire
littlefs
T-vK/ESP32 BLE Keyboard@^0.3.2
monitor_filters =
esp32_exception_decoder
[env:atomic14-esp32-rainbow-01]
platform = ${common.platform}
framework = ${common.framework}
monitor_speed = ${common.monitor_speed}
monitor_filters = ${common.monitor_filters}
board = esp32-s3-devkitc-1
board_build.arduino.memory_type = qio_opi
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
build_unflags =
${common.build_unflags}
build_flags =
${common.build_flags}
-DHARDWARE_VERSION_STRING=\"ESP32Rainbow01\"
-DBOARD_HAS_PSRAM
-DTOUCH_KEYBOARD_V2
-DLED_GPIO=GPIO_NUM_1
-DTFT_ST7789
-DTFT_SPI_FREQUENCY=SPI_MASTER_FREQ_40M
-DTFT_RGB_ORDER=TFT_BGR
-DTFT_WIDTH=320
-DTFT_HEIGHT=240
-DTFT_SCLK=GPIO_NUM_18
-DTFT_MISO=GPIO_NUM_NC
-DTFT_MOSI=GPIO_NUM_15
-DTFT_RST=GPIO_NUM_8
-DTFT_DC=GPIO_NUM_17
-DTFT_CS=GPIO_NUM_16
-DTFT_BL=GPIO_NUM_NC
-DBUZZER_GPIO_NUM=GPIO_NUM_3
-DNUNCHUK_CLOCK=GPIO_NUM_43
-DNUNCHUK_DATA=GPIO_NUM_44
-DSEESAW_CLOCK=GPIO_NUM_43
-DSEESAW_DATA=GPIO_NUM_44
-DARDUINO_USB_MODE
-DARDUINO_USB_CDC_ON_BOOT
lib_deps = ${common.lib_deps}