Advertisement
Guest User

Untitled

a guest
Mar 18th, 2020
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. [General]
  2.  
  3. # Default adapter name
  4. # Defaults to 'BlueZ X.YZ'
  5. #Name = BlueZ
  6.  
  7. # Default device class. Only the major and minor device class bits are
  8. # considered. Defaults to '0x000000'.
  9. #Class = 0x000100
  10.  
  11. # How long to stay in discoverable mode before going back to non-discoverable
  12. # The value is in seconds. Default is 180, i.e. 3 minutes.
  13. # 0 = disable timer, i.e. stay discoverable forever
  14. #DiscoverableTimeout = 0
  15.  
  16. # Always allow pairing even if there are no agent registered
  17. # Possible values: true, false
  18. # Default: false
  19. #AlwaysPairable = false
  20.  
  21. # How long to stay in pairable mode before going back to non-discoverable
  22. # The value is in seconds. Default is 0.
  23. # 0 = disable timer, i.e. stay pairable forever
  24. #PairableTimeout = 0
  25.  
  26. # Use vendor id source (assigner), vendor, product and version information for
  27. # DID profile support. The values are separated by ":" and assigner, VID, PID
  28. # and version.
  29. # Possible vendor id source values: bluetooth, usb (defaults to usb)
  30. #DeviceID = bluetooth:1234:5678:abcd
  31.  
  32. # Do reverse service discovery for previously unknown devices that connect to
  33. # us. For BR/EDR this option is really only needed for qualification since the
  34. # BITE tester doesn't like us doing reverse SDP for some test cases, for LE
  35. # this disables the GATT client functionally so it can be used in system which
  36. # can only operate as peripheral.
  37. # Defaults to 'true'.
  38. #ReverseServiceDiscovery = true
  39.  
  40. # Enable name resolving after inquiry. Set it to 'false' if you don't need
  41. # remote devices name and want shorter discovery cycle. Defaults to 'true'.
  42. #NameResolving = true
  43.  
  44. # Enable runtime persistency of debug link keys. Default is false which
  45. # makes debug link keys valid only for the duration of the connection
  46. # that they were created for.
  47. #DebugKeys = false
  48.  
  49. # Restricts all controllers to the specified transport. Default value
  50. # is "dual", i.e. both BR/EDR and LE enabled (when supported by the HW).
  51. # Possible values: "dual", "bredr", "le"
  52. #ControllerMode = dual
  53.  
  54. # Enables Multi Profile Specification support. This allows to specify if
  55. # system supports only Multiple Profiles Single Device (MPSD) configuration
  56. # or both Multiple Profiles Single Device (MPSD) and Multiple Profiles Multiple
  57. # Devices (MPMD) configurations.
  58. # Possible values: "off", "single", "multiple"
  59. #MultiProfile = off
  60.  
  61. # Permanently enables the Fast Connectable setting for adapters that
  62. # support it. When enabled other devices can connect faster to us,
  63. # however the tradeoff is increased power consumptions. This feature
  64. # will fully work only on kernel version 4.1 and newer. Defaults to
  65. # 'false'.
  66. #FastConnectable = false
  67.  
  68. # Default privacy setting.
  69. # Enables use of private address.
  70. # Possible values: "off", "device", "network"
  71. # "network" option not supported currently
  72. # Defaults to "off"
  73. # Privacy = off
  74.  
  75. [GATT]
  76. # GATT attribute cache.
  77. # Possible values:
  78. # always: Always cache attributes even for devices not paired, this is
  79. # recommended as it is best for interoperability, with more consistent
  80. # reconnection times and enables proper tracking of notifications for all
  81. # devices.
  82. # yes: Only cache attributes of paired devices.
  83. # no: Never cache attributes
  84. # Default: always
  85. #Cache = always
  86.  
  87. # Minimum required Encryption Key Size for accessing secured characteristics.
  88. # Possible values: 0 and 7-16. 0 means don't care.
  89. # Defaults to 0
  90. #KeySize = 0
  91.  
  92. # Exchange MTU size.
  93. # Possible values: 23-517
  94. # Defaults to 517
  95. #ExchangeMTU = 517
  96.  
  97. [Policy]
  98. #
  99. # The ReconnectUUIDs defines the set of remote services that should try
  100. # to be reconnected to in case of a link loss (link supervision
  101. # timeout). The policy plugin should contain a sane set of values by
  102. # default, but this list can be overridden here. By setting the list to
  103. # empty the reconnection feature gets disabled.
  104. #ReconnectUUIDs=00001112-0000-1000-8000-00805f9b34fb,0000111f-0000-1000-8000-00805f9b34fb,0000110a-0000-1000-8000-00805f9b34fb
  105.  
  106. # ReconnectAttempts define the number of attempts to reconnect after a link
  107. # lost. Setting the value to 0 disables reconnecting feature.
  108. #ReconnectAttempts=7
  109.  
  110. # ReconnectIntervals define the set of intervals in seconds to use in between
  111. # attempts.
  112. # If the number of attempts defined in ReconnectAttempts is bigger than the
  113. # set of intervals the last interval is repeated until the last attempt.
  114. #ReconnectIntervals=1,2,4,8,16,32,64
  115.  
  116. # AutoEnable defines option to enable all controllers when they are found.
  117. # This includes adapters present on start as well as adapters that are plugged
  118. # in later on. Defaults to 'false'.
  119. #AutoEnable=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement