Kconfig.projbuild 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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_CONN_ITVL_MIN
  8. int "Minimum connection itvl"
  9. default 6
  10. help
  11. Set the minimum connection interval in 1.25msec units.
  12. config EXAMPLE_CONN_ITVL_MAX
  13. int "Maximum connection itvl"
  14. default 6
  15. help
  16. Set the maximum connection interval in 1.25msec units.
  17. config EXAMPLE_CONN_LATENCY
  18. int "Connection latency"
  19. default 0
  20. help
  21. Set the connection latency.
  22. config EXAMPLE_CONN_TIMEOUT
  23. int "Supervision timeout"
  24. default 500
  25. help
  26. Set the supervision timeout in 10msec units.
  27. config EXAMPLE_CONN_CE_LEN_MIN
  28. int "Minimum connection event length"
  29. default 12
  30. help
  31. Set the minimum connection event length in 0.625msec units.
  32. config EXAMPLE_CONN_CE_LEN_MAX
  33. int "Maximum connection event length"
  34. default 12
  35. help
  36. Set the maximum connection event length in 0.625msec units.
  37. endmenu