Kconfig.projbuild 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. menu "Example Configuration"
  2. config EXAMPLE_PEER_ADDR
  3. string "Peer Address"
  4. default "ADDR_ANY"
  5. help
  6. Enter the peer address in aa:bb:cc:dd:ee:ff form to connect to a specific peripheral
  7. config EXAMPLE_EXTENDED_ADV
  8. bool
  9. depends on SOC_BLE_50_SUPPORTED
  10. default y if SOC_ESP_NIMBLE_CONTROLLER
  11. select BT_NIMBLE_EXT_ADV
  12. prompt "Enable Extended Adv"
  13. help
  14. Use this option to enable extended advertising in the example.
  15. If this option is disabled, ensure config BT_NIMBLE_EXT_ADV is
  16. also disabled from Nimble stack menuconfig
  17. config EXAMPLE_INIT_DEINIT_LOOP
  18. bool
  19. prompt "Perform init deinit of nimble stack in a loop"
  20. help
  21. Enable this flag, to perform only stack Init and Deinit in a loop.
  22. config EXAMPLE_ENCRYPTION
  23. bool
  24. prompt "Enable Link Encryption"
  25. help
  26. This enables bonding and encryption after connection has been established.
  27. endmenu