Advertisement
m13253

cat /etc/bluetooth/{main,audio}.conf

May 16th, 2013
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.13 KB | None | 0 0
  1. [brilliant@brilliant-laptop ~]$ cat /etc/bluetooth/main.conf
  2. [General]
  3.  
  4. # List of plugins that should not be loaded on bluetoothd startup
  5. #DisablePlugins = network,input
  6.  
  7. # Default adaper name
  8. # %h - substituted for hostname
  9. # %d - substituted for adapter id
  10. Name = %h-%d
  11.  
  12. # Default device class. Only the major and minor device class bits are
  13. # considered.
  14. Class = 0x000100
  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. # Automatic connection for bonded devices driven by platform/user events.
  31. # If a platform plugin uses this mechanism, automatic connections will be
  32. # enabled during the interval defined below. Initially, this feature
  33. # intends to be used to establish connections to ATT channels.
  34. AutoConnectTimeout = 60
  35.  
  36. # What value should be assumed for the adapter Powered property when
  37. # SetProperty(Powered, ...) hasn't been called yet. Defaults to true
  38. InitiallyPowered = true
  39.  
  40. # Remember the previously stored Powered state when initializing adapters
  41. RememberPowered = true
  42.  
  43. # Use vendor id source (assigner), vendor, product and version information for
  44. # DID profile support. The values are separated by ":" and assigner, VID, PID
  45. # and version.
  46. # Possible vendor id source values: bluetooth, usb (defaults to usb)
  47. #DeviceID = bluetooth:1234:5678:abcd
  48.  
  49. # Do reverse service discovery for previously unknown devices that connect to
  50. # us. This option is really only needed for qualification since the BITE tester
  51. # doesn't like us doing reverse SDP for some test cases (though there could in
  52. # theory be other useful purposes for this too). Defaults to true.
  53. ReverseServiceDiscovery = true
  54.  
  55. # Enable name resolving after inquiry. Set it to 'false' if you don't need
  56. # remote devices name and want shorter discovery cycle. Defaults to 'true'.
  57. NameResolving = true
  58.  
  59. # Enable runtime persistency of debug link keys. Default is false which
  60. # makes debug link keys valid only for the duration of the connection
  61. # that they were created for.
  62. DebugKeys = false
  63.  
  64. # Enable the GATT functionality. Default is false
  65. EnableGatt = false
  66. [brilliant@brilliant-laptop ~]$ cat /etc/bluetooth/audio.conf
  67. # Configuration file for the audio service
  68.  
  69. # This section contains options which are not specific to any
  70. # particular interface
  71. [General]
  72. #Enable = Sink,Source
  73. Enable = Sink,Source,Socket
  74.  
  75. # Switch to master role for incoming connections (defaults to true)
  76. #Master=true
  77.  
  78. # If we want to disable support for specific services
  79. # Defaults to supporting all implemented services
  80. #Disable=Gateway,Source,Socket
  81.  
  82. # SCO routing. Either PCM or HCI (in which case audio is routed to/from ALSA)
  83. # Defaults to HCI
  84. #SCORouting=PCM
  85. SCORouting=PCM
  86.  
  87. # Automatically connect both A2DP and HFP/HSP profiles for incoming
  88. # connections. Some headsets that support both profiles will only connect the
  89. # other one automatically so the default setting of true is usually a good
  90. # idea.
  91. #AutoConnect=true
  92.  
  93. # Headset interface specific options (i.e. options which affect how the audio
  94. # service interacts with remote headset devices)
  95. [Headset]
  96.  
  97. # Set to true to support HFP, false means only HSP is supported
  98. # Defaults to true
  99. HFP=true
  100.  
  101. # Maximum number of connected HSP/HFP devices per adapter. Defaults to 1
  102. MaxConnected=1
  103.  
  104. # Set to true to enable use of fast connectable mode (faster page scanning)
  105. # for HFP when incoming call starts. Default settings are restored after
  106. # call is answered or rejected. Page scan interval is much shorter and page
  107. # scan type changed to interlaced. Such allows faster connection initiated
  108. # by a headset.
  109. FastConnectable=false
  110.  
  111. # Just an example of potential config options for the other interfaces
  112. [A2DP]
  113. #SBCSources=1
  114. #MPEG12Sources=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement