generated from lvgl/board_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
89 lines (89 loc) · 2.86 KB
/
manifest.json
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ESP32-S3-LCD-EV-Board",
"maintainer": "LVGL",
"hostOperatingsystem": [
"Linux",
"Windows",
"MacOS"
],
"environment": [
"ESP-IDF"
],
"hardware": {
"chipVendor": "Espressif",
"manufacturer": "Espressif",
"specs": {
"MCU": "ESP32-S3",
"RAM": "512 KB internal SRAM, 8/16 MB external PSRAM",
"Flash": "2/4/8/16 MB",
"GPU": "None",
"Resolution": "800x480 / 480x480",
"Display Size": "4.3” / 3.95”",
"Interface": "RGB LCD",
"Color Depth": "24-bit",
"Technology": "IPS",
"DPI": "216 px/inch / 171 px/inch",
"Touch Pad": "Capacitive (GT1151/FT5x06)"
}
},
"description": "ESP32-S3-LCD-EV-Board is a development board for evaluating and verifying ESP32-S3 screen interactive applications. It has the functions of touch screen interaction and voice interaction.",
"shortDescription": "Powerful ESP32-S3 based development board supporting various displays.",
"urlToClone": "https://github.com/lvgl/lv_port_espressif_esp32-s3-lcd-ev-board",
"logos": ["https://raw.githubusercontent.com/lvgl/project-creator/master/meta/images/espressif/logo.svg"],
"branches": [
"release/v9.2"
],
"settings": [
{
"type": "dropdown",
"label": "Display",
"options": [
{
"name": "800x480",
"value": "0",
"default": "true"
},
{
"name": "480x480",
"value": "1"
}
],
"actions": [
{
"ifValue": "1",
"toAppend": "CONFIG_BSP_LCD_SUB_BOARD_480_480=y",
"filePath": "sdkconfig.defaults"
}
]
},
{
"type": "dropdown",
"label": "Show performance monitor",
"options": [
{
"name": "Yes",
"value": "1",
"default": "true"
},
{
"name": "No",
"value": "0"
}
],
"actions": [
{
"ifValue": "1",
"toReplace": "CONFIG_LV_USE_PERF_MONITOR=.+",
"newContent": "CONFIG_LV_USE_PERF_MONITOR=y",
"filePath": "sdkconfig.defaults"
},
{
"ifValue": "0",
"toReplace": "CONFIG_LV_USE_PERF_MONITOR=.+",
"newContent": "CONFIG_LV_USE_PERF_MONITOR=n",
"filePath": "sdkconfig.defaults"
}
]
}
]
}