* Feature request: boolean properties to auto reconnect list of MAC's at daemon start up
@ 2009-07-04 11:15 Jelle de Jong
2009-07-04 11:57 ` Stefan Seyfried
0 siblings, 1 reply; 5+ messages in thread
From: Jelle de Jong @ 2009-07-04 11:15 UTC (permalink / raw)
To: linux-bluetooth
Hello everybody,
I would like to request a feature to make it possible from command line
tool and dbus gtk gui to set a property just similar as the trusted
device property to directly reconnect a device at start-up of the
bluetoothd daemon.
Use-case: I have a lot of systems with successful connected bluetooth
keyboards. The boot-up of these systems are around 5 seconds with full
GUI. But the devices is not usable yet, because when you press a key it
first start connection... this takes almost the same time as the
complete boot-up and it forces an extra key press of the user every time
they start the system. Maybe some org.bluez.Input interface thing?
Would somebody be willing to place this on there to-do list, it has no
hurry bot somewhere in the next 6 months would be nice.
Thanks in advance,
Jelle de Jong
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Feature request: boolean properties to auto reconnect list of MAC's at daemon start up
2009-07-04 11:15 Feature request: boolean properties to auto reconnect list of MAC's at daemon start up Jelle de Jong
@ 2009-07-04 11:57 ` Stefan Seyfried
2009-07-04 13:37 ` Luiz Augusto von Dentz
0 siblings, 1 reply; 5+ messages in thread
From: Stefan Seyfried @ 2009-07-04 11:57 UTC (permalink / raw)
To: BlueZ devel list
On Sat, 04 Jul 2009 13:15:52 +0200
Jelle de Jong <jelledejong@powercraft.nl> wrote:
> Use-case: I have a lot of systems with successful connected bluetooth
> keyboards. The boot-up of these systems are around 5 seconds with full
> GUI. But the devices is not usable yet, because when you press a key
> it first start connection... this takes almost the same time as the
> complete boot-up and it forces an extra key press of the user every
> time they start the system. Maybe some org.bluez.Input interface
> thing?
IIUC that's just how bluetooth input devices work: they do connect to
the host - not the other way round. So it is really a problem that
cannot be solved on bluez' side.
--
Stefan Seyfried
R&D Preload Department | "Any ideas, John?"
SUSE LINUX Products GmbH, Nürnberg | "Well, surrounding them's out."
This footer brought to you by insane German lawmakers:
SUSE Linux Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Feature request: boolean properties to auto reconnect list of MAC's at daemon start up
2009-07-04 11:57 ` Stefan Seyfried
@ 2009-07-04 13:37 ` Luiz Augusto von Dentz
2009-07-04 14:03 ` Iain Hibbert
0 siblings, 1 reply; 5+ messages in thread
From: Luiz Augusto von Dentz @ 2009-07-04 13:37 UTC (permalink / raw)
To: Stefan Seyfried; +Cc: BlueZ devel list
Hi,
On Sat, Jul 4, 2009 at 8:57 AM, Stefan Seyfried<seife@suse.de> wrote:
> On Sat, 04 Jul 2009 13:15:52 +0200
> Jelle de Jong <jelledejong@powercraft.nl> wrote:
>
>> Use-case: I have a lot of systems with successful connected bluetooth
>> keyboards. The boot-up of these systems are around 5 seconds with full
>> GUI. But the devices is not usable yet, because when you press a key
>> it first start connection... this takes almost the same time as the
>> complete boot-up and it forces an extra key press of the user every
>> time they start the system. Maybe some org.bluez.Input interface
>> thing?
>
> IIUC that's just how bluetooth input devices work: they do connect to
> the host - not the other way round. So it is really a problem that
> cannot be solved on bluez' side.
Yep, most hid devices will just refuse the connection if the 'virtual
cable plug' was already stabilised, in general this is also a bad idea
for any connection attempt during the startup as we have no guarantee
that the connection will complete.
--
Luiz Augusto von Dentz
Engenheiro de Computação
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Feature request: boolean properties to auto reconnect list of MAC's at daemon start up
2009-07-04 13:37 ` Luiz Augusto von Dentz
@ 2009-07-04 14:03 ` Iain Hibbert
2009-07-09 8:00 ` Jelle de Jong
0 siblings, 1 reply; 5+ messages in thread
From: Iain Hibbert @ 2009-07-04 14:03 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: BlueZ devel list
On Sat, 4 Jul 2009, Luiz Augusto von Dentz wrote:
> > IIUC that's just how bluetooth input devices work: they do connect to
> > the host - not the other way round. So it is really a problem that
> > cannot be solved on bluez' side.
>
> Yep, most hid devices will just refuse the connection if the 'virtual
> cable plug' was already stabilised, in general this is also a bad idea
> for any connection attempt during the startup as we have no guarantee
> that the connection will complete.
see HIDNormallyConnectable attribute in the HID spec (7.11.13)
I certainly find with my Apple bluetooth keyboard and mouse that the host
OS (not using BlueZ btw) can connect to them at boot without my
intervention.
iain
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Feature request: boolean properties to auto reconnect list of MAC's at daemon start up
2009-07-04 14:03 ` Iain Hibbert
@ 2009-07-09 8:00 ` Jelle de Jong
0 siblings, 0 replies; 5+ messages in thread
From: Jelle de Jong @ 2009-07-09 8:00 UTC (permalink / raw)
To: Iain Hibbert; +Cc: Luiz Augusto von Dentz, BlueZ devel list
Iain Hibbert schreef:
> On Sat, 4 Jul 2009, Luiz Augusto von Dentz wrote:
>
>>> IIUC that's just how bluetooth input devices work: they do connect to
>>> the host - not the other way round. So it is really a problem that
>>> cannot be solved on bluez' side.
>> Yep, most hid devices will just refuse the connection if the 'virtual
>> cable plug' was already stabilised, in general this is also a bad idea
>> for any connection attempt during the startup as we have no guarantee
>> that the connection will complete.
>
> see HIDNormallyConnectable attribute in the HID spec (7.11.13)
>
> I certainly find with my Apple bluetooth keyboard and mouse that the host
> OS (not using BlueZ btw) can connect to them at boot without my
> intervention.
>
> iain
Thanks you for providing this information it helps to see that apple
does provide this behavior for usability to its users. Would a developer
be willing to investigate this feature and place this on his/her to do list?
Thanks in advance,
Jelle
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-07-09 8:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-04 11:15 Feature request: boolean properties to auto reconnect list of MAC's at daemon start up Jelle de Jong
2009-07-04 11:57 ` Stefan Seyfried
2009-07-04 13:37 ` Luiz Augusto von Dentz
2009-07-04 14:03 ` Iain Hibbert
2009-07-09 8:00 ` Jelle de Jong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox