-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
CMakePresets.json
58 lines (58 loc) · 1.98 KB
/
CMakePresets.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
{
"version": 4,
"include": [
"../../../CMake/arm-gcc.json",
"../../../config/user-tools-repos.json",
"../../../config/user-prefs.json"
],
"configurePresets": [
{
"name": "I2M_ELECTRON_NF",
"inherits": [
"arm-gcc-cortex-preset",
"user-tools-repos",
"user-prefs"
],
"hidden": false,
"cacheVariables": {
"TARGET_BOARD": "${presetName}",
"RTOS": "ChibiOS",
"TARGET_SERIES": "STM32F4xx",
"USE_FPU": "ON",
"USE_RNG": "OFF",
"DP_FLOATINGPOINT": "OFF",
"SUPPORT_ANY_BASE_CONVERSION": "OFF",
"CHIBIOS_CONTRIB_REQUIRED": "OFF",
"SWO_OUTPUT": "OFF",
"NF_BUILD_RTM": "OFF",
"NF_FEATURE_DEBUGGER": "ON",
"NF_FEATURE_RTC": "ON",
"NF_FEATURE_HAS_CONFIG_BLOCK": "OFF",
"NF_FEATURE_HAS_SDCARD": "OFF",
"NF_FEATURE_HAS_USB_MSD": "OFF",
"NF_NETWORKING_SNTP": "OFF",
"API_Hardware.Stm32": "ON",
"API_nanoFramework.Device.Can": "OFF",
"API_nanoFramework.Device.OneWire": "OFF",
"API_System.Math": "ON",
"API_System.Net": "OFF",
"API_System.Device.Adc": "ON",
"API_System.Devices.Dac": "OFF",
"API_System.Device.Gpio": "ON",
"API_System.Device.I2c": "ON",
"API_System.Device.Pwm": "ON",
"API_System.IO.Ports": "ON",
"API_System.Device.Spi": "ON",
"API_Windows.Storage": "OFF"
}
}
],
"buildPresets": [
{
"inherits": "base-user",
"name": "I2M_ELECTRON_NF",
"displayName": "I2M_ELECTRON_NF",
"configurePreset": "I2M_ELECTRON_NF"
}
]
}