fixed conf file (tabs and order)

pull/9790/head
paul-szczepanek-arm 2019-02-12 12:12:40 +00:00 committed by Vincent Coubard
parent 208eb200f1
commit 7974726659
1 changed files with 72 additions and 72 deletions

View File

@ -1,75 +1,75 @@
{ {
"name": "ble", "name": "ble",
"config": { "config": {
"ble-feature-observer": { "ble-role-observer": {
"help": "Include observer BLE role support, allows listening for and processing advertising packets.", "help": "Include observer BLE role support, allows listening for and processing advertising packets.",
"value": true, "value": true,
"macro_name": "BLE_ROLE_OBSERVER" "macro_name": "BLE_ROLE_OBSERVER"
}, },
"ble-role-broadcaster": { "ble-role-broadcaster": {
"help": "Include broadcaster BLE role support, allows sending advertising packets.", "help": "Include broadcaster BLE role support, allows sending advertising packets.",
"value": true, "value": true,
"macro_name": "BLE_ROLE_BROADCASTER" "macro_name": "BLE_ROLE_BROADCASTER"
}, },
"ble-role-peripheral": { "ble-role-central": {
"help": "Include peripheral BLE role support, depends on observer role.", "help": "Include central BLE role support, depends on broadcaster role.",
"value": true, "value": true,
"macro_name": "BLE_ROLE_PERIPHERAL" "macro_name": "BLE_ROLE_CENTRAL"
}, },
"ble-role-central": { "ble-role-peripheral": {
"help": "Include central BLE role support, depends on broadcaster role.", "help": "Include peripheral BLE role support, depends on observer role.",
"value": true, "value": true,
"macro_name": "BLE_ROLE_CENTRAL" "macro_name": "BLE_ROLE_PERIPHERAL"
}, },
"ble-feature-security": { "ble-feature-gatt-client": {
"help": "Include security BLE role support, depends on peripheral or central role.", "help": "Include Gatt Client BLE role support, depends on peripheral and central role.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_SECURITY" "macro_name": "BLE_FEATURE_GATT_CLIENT"
}, },
"ble-feature-secure-connections": { "ble-feature-gatt-server": {
"help": "Include secure connections support, depends on the security feature.", "help": "Include Gatt Server BLE role support, depends on peripheral or central role.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_SECURE_CONNECTIONS" "macro_name": "BLE_FEATURE_GATT_SERVER"
}, },
"ble-feature-signing": { "ble-feature-security": {
"help": "Include signing support, depends on the security feature.", "help": "Include security BLE role support, depends on peripheral or central role.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_SIGNING" "macro_name": "BLE_FEATURE_SECURITY"
}, },
"ble-feature-whitelist": { "ble-feature-secure-connections": {
"help": "Include whitelist support, depends on the security feature.", "help": "Include secure connections support, depends on the security feature.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_WHITELIST" "macro_name": "BLE_FEATURE_SECURE_CONNECTIONS"
}, },
"ble-feature-privacy": { "ble-feature-signing": {
"help": "Include privacy support, depends on the security feature.", "help": "Include signing support, depends on the security feature.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_PRIVACY" "macro_name": "BLE_FEATURE_SIGNING"
}, },
"ble-feature-phy-management": { "ble-feature-whitelist": {
"help": "Include additional PHY support.", "help": "Include whitelist support, depends on the security feature.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_PHY_MANAGEMENT" "macro_name": "BLE_FEATURE_WHITELIST"
}, },
"ble-feature-extended-advertising": { "ble-feature-privacy": {
"help": "Include extended advertising support, depends on the phy management feature.", "help": "Include privacy support, depends on the security feature.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_EXTENDED_ADVERTISING" "macro_name": "BLE_FEATURE_PRIVACY"
}, },
"ble-feature-periodic-advertising": { "ble-feature-phy-management": {
"help": "Include periodic advertising support, depends on the extended advertising feature.", "help": "Include additional PHY support.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_PERIODIC_ADVERTISING" "macro_name": "BLE_FEATURE_PHY_MANAGEMENT"
}, },
"ble-feature-gatt-client": { "ble-feature-extended-advertising": {
"help": "Include Gatt Client BLE role support, depends on peripheral and central role.", "help": "Include extended advertising support, depends on the phy management feature.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_GATT_CLIENT" "macro_name": "BLE_FEATURE_EXTENDED_ADVERTISING"
}, },
"ble-feature-gatt-server": { "ble-feature-periodic-advertising": {
"help": "Include Gatt Server BLE role support, depends on peripheral or central role.", "help": "Include periodic advertising support, depends on the extended advertising feature.",
"value": true, "value": true,
"macro_name": "BLE_FEATURE_GATT_SERVER" "macro_name": "BLE_FEATURE_PERIODIC_ADVERTISING"
} }
} }
} }