mirror of
https://github.com/halleysfifthinc/AVCLAN-Mockingboard.git
synced 2026-08-07 01:13:18 +00:00
80 lines
2.3 KiB
JSON
80 lines
2.3 KiB
JSON
{
|
|
"version": 2,
|
|
"configurePresets": [
|
|
{
|
|
"name": "usb0",
|
|
"hidden": true,
|
|
"description": "Program over /dev/ttyUSB0",
|
|
"cacheVariables": {
|
|
"AVR_UPLOADTOOL_PORT": "/dev/ttyUSB0"
|
|
}
|
|
},
|
|
{
|
|
"name": "usb1",
|
|
"hidden": true,
|
|
"description": "Program over /dev/ttyUSB1",
|
|
"cacheVariables": {
|
|
"AVR_UPLOADTOOL_PORT": "/dev/ttyUSB1"
|
|
}
|
|
},
|
|
{
|
|
"name": "debug-base",
|
|
"hidden": true,
|
|
"description": "Debug build settings",
|
|
"generator": "Unix Makefiles",
|
|
"binaryDir": "${sourceDir}/build",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "Debug",
|
|
"FREQSEL": "20MHz",
|
|
"TCB_CLKSEL": "TCB_CLKSEL_CLKDIV1_gc"
|
|
}
|
|
},
|
|
{
|
|
"name": "relwithdebinfo-base",
|
|
"hidden": true,
|
|
"description": "RelWithDebInfo build settings",
|
|
"inherits": "debug-base",
|
|
"cacheVariables": {
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
|
"USART_RXMODE": "USART_RXMODE_CLK2X_gc"
|
|
}
|
|
},
|
|
{
|
|
"name": "default",
|
|
"displayName": "Debug (ttyUSB0)",
|
|
"description": "Debug build, program over /dev/ttyUSB0",
|
|
"inherits": [
|
|
"debug-base",
|
|
"usb0"
|
|
]
|
|
},
|
|
{
|
|
"name": "default-usb1",
|
|
"displayName": "Debug (ttyUSB1)",
|
|
"description": "Debug build, program over /dev/ttyUSB1",
|
|
"inherits": [
|
|
"debug-base",
|
|
"usb1"
|
|
]
|
|
},
|
|
{
|
|
"name": "relwithdebinfo",
|
|
"displayName": "RelWithDebInfo (ttyUSB1)",
|
|
"description": "RelWithDebInfo build, program over /dev/ttyUSB1",
|
|
"inherits": [
|
|
"relwithdebinfo-base",
|
|
"usb1"
|
|
]
|
|
},
|
|
{
|
|
"name": "relwithdebinfo-usb0",
|
|
"displayName": "RelWithDebInfo (ttyUSB0)",
|
|
"description": "RelWithDebInfo build, program over /dev/ttyUSB0",
|
|
"inherits": [
|
|
"relwithdebinfo-base",
|
|
"usb0"
|
|
]
|
|
}
|
|
]
|
|
}
|