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 9Name = "Bluez" 10 11# Default device class. Only the major and minor device class bits are 12# considered. 13Class = 0x000100 14 15# How long to stay in discoverable mode before going back to non-discoverable 16# The value is in seconds. Default is 180, i.e. 3 minutes. 17# 0 = disable timer, i.e. stay discoverable forever 18DiscoverableTimeout = 120 19 20# How long to stay in pairable mode before going back to non-discoverable 21# The value is in seconds. Default is 0. 22# 0 = disable timer, i.e. stay pairable forever 23PairableTimeout = 0 24 25# Use some other page timeout than the controller default one 26# which is 16384 (10 seconds). 27PageTimeout = 8192 28 29# Discover scheduler interval used in Adapter.DiscoverDevices 30# The value is in seconds. Defaults is 0 to use controller scheduler. 31DiscoverSchedulerInterval = 0 32 33# What value should be assumed for the adapter Powered property when 34# SetProperty(Powered, ...) hasn't been called yet. Defaults to true 35InitiallyPowered = true 36 37# Remember the previously stored Powered state when initializing adapters 38RememberPowered = true 39 40# Use vendor, product and version information for DID profile support. 41# The values are separated by ":" and VID, PID and version. 42DeviceID = android:generic:1.5 43 44# Do reverse service discovery for previously unknown devices that connect to 45# us. This option is really only needed for qualification since the BITE tester 46# doesn't like us doing reverse SDP for some test cases (though there could in 47# theory be other useful purposes for this too). Defaults to true. 48ReverseServiceDiscovery = true 49 50# Enable name resolving after inquiry. Set it to 'false' if you don't need 51# remote devices name and want shorter discovery cycle. Defaults to 'true'. 52NameResolving = true 53