Advertisement
Guest User

for LOR

a guest
Dec 22nd, 2013
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. [General]
  2.  
  3. # List of plugins that should not be loaded on bluetoothd startup
  4. #DisablePlugins = network,input
  5.  
  6. # Default adaper name
  7. # %h - substituted for hostname
  8. # %d - substituted for adapter id
  9. Name = %h-%d
  10.  
  11. # Default device class. Only the major and minor device class bits are
  12. # considered.
  13. # Class = 0x000100
  14. Class = 0x100100
  15.  
  16. # How long to stay in discoverable mode before going back to non-discoverable
  17. # The value is in seconds. Default is 180, i.e. 3 minutes.
  18. # 0 = disable timer, i.e. stay discoverable forever
  19. DiscoverableTimeout = 0
  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 some other page timeout than the controller default one
  27. # which is 16384 (10 seconds).
  28. PageTimeout = 8192
  29.  
  30. # Discover scheduler interval used in Adapter.DiscoverDevices
  31. # The value is in seconds. Defaults is 30.
  32. DiscoverSchedulerInterval = 30
  33.  
  34. # Automatic connection for bonded devices driven by platform/user events.
  35. # If a platform plugin uses this mechanism, automatic connections will be
  36. # enabled during the interval defined below. Initially, this feature
  37. # intends to be used to establish connections to ATT channels.
  38. AutoConnectTimeout = 60
  39.  
  40. # What value should be assumed for the adapter Powered property when
  41. # SetProperty(Powered, ...) hasn't been called yet. Defaults to true
  42. InitiallyPowered = true
  43.  
  44. # Remember the previously stored Powered state when initializing adapters
  45. RememberPowered = true
  46.  
  47. # Use vendor, product and version information for DID profile support.
  48. # The values are separated by ":" and VID, PID and version.
  49. #DeviceID = 1234:5678:abcd
  50.  
  51. # Do reverse service discovery for previously unknown devices that connect to
  52. # us. This option is really only needed for qualification since the BITE tester
  53. # doesn't like us doing reverse SDP for some test cases (though there could in
  54. # theory be other useful purposes for this too). Defaults to true.
  55. ReverseServiceDiscovery = true
  56.  
  57. # Enable name resolving after inquiry. Set it to 'false' if you don't need
  58. # remote devices name and want shorter discovery cycle. Defaults to 'true'.
  59. NameResolving = true
  60.  
  61. # Enable runtime persistency of debug link keys. Default is false which
  62. # makes debug link keys valid only for the duration of the connection
  63. # that they were created for.
  64. DebugKeys = false
  65.  
  66. # Enable the GATT Attribute Server. Default is false, because it is only
  67. # useful for testing.
  68. AttributeServer = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement