Once SLC is done, Android is ready to get indicators values. --- android/handsfree-client.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/android/handsfree-client.c b/android/handsfree-client.c index 50c5821..d3a3bd1 100644 --- a/android/handsfree-client.c +++ b/android/handsfree-client.c @@ -864,14 +864,24 @@ static void ciev_cb(struct hfp_context *context, void *user_data) static void slc_completed(struct device *dev) { + int i; + struct indicator *ag_ind; + DBG(""); + ag_ind = dev->ag_ind; + device_set_state(dev, HAL_HF_CLIENT_CONN_STATE_SLC_CONNECTED); - /* - * TODO: Notify Android with indicators, register unsolicited result - * handlers - */ + /* Notify Android with indicators */ + for (i = 0; i < HFP_INDICATOR_LAST; i++) { + if (!ag_ind[i].cb) + continue; + + ag_ind[i].cb(ag_ind[i].val); + } + + /* TODO: register unsolicited results handlers */ hfp_hf_register(dev->hf, bvra_cb, "+BRVA", dev, NULL); hfp_hf_register(dev->hf, vgm_cb, "+VGM", dev, NULL); @@ -964,6 +974,7 @@ static void set_indicator_value(uint8_t index, unsigned int val, continue; ag_ind[i].val = val; + ag_ind[i].cb(val); return; } } -- 1.8.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html