Hi Claudio,

On Thu, Nov 22, 2012, Claudio Takahasi wrote:
> +int bluetooth_register_profile(const char *uuid, const char *name,
> +                                                     const char *object)
> +{
> +     DBusMessageIter iter, dict;
> +     DBusPendingCall *c;
> +     DBusMessage *msg;
> +
> +     DBG("Bluetooth: Registering %s (%s) profile", uuid, name);
> +
> +     msg = dbus_message_new_method_call(BLUEZ_SERVICE, "/org/bluez",
> +                     BLUEZ_PROFILE_MGMT_INTERFACE, "RegisterProfile");
> +
> +     dbus_message_iter_init_append(msg, &iter);
> +     dbus_message_iter_append_basic(&iter, DBUS_TYPE_OBJECT_PATH, &object);
> +     dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &uuid);
> +
> +     dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "{sv}", &dict);
> +     dict_append_entry(&dict, "Name", DBUS_TYPE_STRING, &name);
> +     dbus_message_iter_close_container(&iter, &dict);

You're missing the "AutoConnect" dict entry here. Without it HFP will
not be connected using Device.Connect (only remotely initiated or with
Device.ConnectProfile).

Johan
_______________________________________________
ofono mailing list
[email protected]
http://lists.ofono.org/listinfo/ofono

Reply via email to