BM-Lite/.vscode/c_cpp_properties.json
Andrey Perminov 27c95abeba Added support for BM-Lite UART interface.
Implemented UART interface support in stm32Wb55 HAL
2021-12-21 12:35:20 -08:00

18 lines
513 B
JSON

{
"configurations": [
{
"name": "Linux",
"defines": ["BMLITE_ON_UART", "NRF52840_XXAA", "BOARD_PCA10056", "BMLITE_USE_CALLBACK"],
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "${default}",
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
"compilerArgs": [
"-mcpu=cortex-m4",
"-mthumb",
"-mfloat-abi=hard"
]
}
],
"version": 4
}