-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakePresets.json
More file actions
118 lines (117 loc) · 2.9 KB
/
CMakePresets.json
File metadata and controls
118 lines (117 loc) · 2.9 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21
},
"configurePresets": [
{
"name": "base_usb",
"hidden": true,
"cacheVariables": {
"USE_CLANG": "True",
"USE_NO_DEFAULT": "True",
"SWINDLE_USE_USB": "True",
"SWINDLE_USE_NETWORK": "False"
}
},
{
"name": "base_net",
"hidden": true,
"cacheVariables": {
"USE_CLANG": "True",
"USE_NO_DEFAULT": "True",
"SWINDLE_USE_USB": "False",
"SWINDLE_USE_NETWORK": "True"
}
},
{
"name": "rp2040",
"displayName": "RP2040 zero mini board",
"inherits": "base_usb",
"cacheVariables": {
"USE_RP2040": "true",
"USE_RP_ZERO": "true",
"USE_RP_CARRIER": "true"
}
},
{
"name": "rp2040_inv",
"inherits": "rp2040",
"displayName": "RP2040 zero mini board with inverted NRST",
"cacheVariables": {
"USE_INVERTED_NRST": "true"
}
},
{
"name": "gd32f303_48",
"displayName": "GD32F303 in 48 pins package",
"inherits": "base_usb",
"cacheVariables": {
"USE_GD32F3": "true",
"USE_48PIN_PACKAGE": "true",
"USE_HW_FPU": "True"
}
},
{
"name": "gd32f303_64",
"displayName": "GD32F303 in 64 pins package",
"inherits": "base_usb",
"cacheVariables": {
"USE_GD32F3": "true",
"USE_48PIN_PACKAGE": "false",
"USE_64PIN_PACKAGE": "true",
"USE_HW_FPU": "True"
}
},
{
"name": "gd32f303_48_inv_ws2812",
"displayName": "GD32F303 in 48 pins package with RGB led and inverted NRST",
"inherits": "gd32f303_48",
"cacheVariables": {
"USE_WS2812": "True",
"USE_INVERTED_NRST": "True"
}
},
{
"name": "gd32f303_64_inv_ws2812",
"displayName": "GD32F303 in 64 pins package with RGB led and inverted NRST",
"inherits": "gd32f303_64",
"cacheVariables": {
"USE_WS2812": "True",
"USE_INVERTED_NRST": "True"
}
},
{
"name": "ch32v307",
"inherits": "base_usb",
"displayName": "CH32V30x in 64 pins package",
"cacheVariables": {
"USE_CH32V3x": "True",
"USE_CH32v3x_HW_IRQ_STACK": "True",
"USE_HW_FPU": "True",
"USE_64PIN_PACKAGE": "true"
}
},
{
"name": "ch32v307_inv_ws2812",
"inherits": "ch32v307",
"displayName": "CH32V30x in 64 pins package with RGB led and inverted NRST",
"cacheVariables": {
"USE_WS2812": "True",
"USE_INVERTED_NRST": "True"
}
},
{
"name": "ch32v307_net",
"inherits": "base_net",
"displayName": "CH32V307 eval board using ethernet",
"cacheVariables": {
"USE_CH32V3x": "True",
"USE_CH32v3x_HW_IRQ_STACK": "True",
"USE_HW_FPU": "True",
"USE_64PIN_PACKAGE": "true"
}
}
]
}