-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathmanifest.json
More file actions
101 lines (101 loc) · 1.98 KB
/
Copy pathmanifest.json
File metadata and controls
101 lines (101 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"build": {
"SDKCONFIGPATH": "./sdkconfig",
"PARTITIONS_FILE_FOR_TARGET": "./sdkconfig/partitions.csv",
"ESP32_SUBCLASS": "esp32s3"
},
"include": [
"$(MODDABLE)/modules/io/manifest.json",
"$(MODULES)/drivers/peripherals/backlight/manifest.json",
"$(MODULES)/drivers/peripherals/button/manifest.json",
"$(MODULES)/drivers/peripherals/led/neopixel/manifest.json",
"$(MODDABLE)/modules/drivers/ili9341_p8/manifest.json",
"$(MODULES)/drivers/sensors/gt911/manifest_async_worker.json"
],
"modules": {
"setup/target": "./setup-target"
},
"preload": [
"setup/target"
],
"config": {
"screen": "ili9341_p8",
"format": "RGB565BE",
"backlight": 14,
"led": {
"pin": 48,
"rainbow": true,
"brightness": 32
}
},
"creation": {
"static": 0,
"chunk": {
"initial": 78848,
"incremental": 0
},
"heap": {
"initial": 4928,
"incremental": 0
},
"stack": 512
},
"defines": {
"ft": { "render_pool_size": 32768 },
"cfe": { "ft": { "cachesize": 32768 } },
"i2c": {
"sda_pin": 4,
"scl_pin": 5
},
"spi": {
"miso_pin": 37,
"mosi_pin": 35,
"sck_pin": 36
},
"ili9341p8": {
"width": 240,
"height": 320,
"hz": 20000000,
"dc_pin": 21,
"pclk_pin": 18,
"data0_pin": 6,
"data1_pin": 7,
"data2_pin": 8,
"data3_pin": 9,
"data4_pin": 10,
"data5_pin": 11,
"data6_pin": 12,
"data7_pin": 13,
"tearingEffect_pin": 47
},
"audioOut": {
"bitsPerSample": 16,
"numChannels": 1,
"sampleRate": 24000,
"streams": 1,
"queueLength": 64,
"volume_divider": 1,
"amplifier": {
"power": 46
},
"i2s": {
"PDM": 1,
"PDM_PIN": 45,
"bitsPerSample": 16
}
},
"audioIn": {
"bitsPerSample": 16,
"sampleRate": 24000,
"i2s": {
"pdm": 1,
"num": 0,
"bias": 1,
"lr_pin": 2,
"datain": 3,
"multiplier": 32,
"slot": "I2S_STD_SLOT_BOTH"
}
}
}
}