@@ -627,18 +627,6 @@ static gboolean BluezCharacteristicStopNotify(BluezGattCharacteristic1 * aChar,
627
627
return isSuccess ? TRUE : FALSE ;
628
628
}
629
629
630
- static gboolean BluezCharacteristicConfirm (BluezGattCharacteristic1 * aChar, GDBusMethodInvocation * aInvocation,
631
- gpointer apClosure)
632
- {
633
- BluezEndpoint * endpoint = static_cast <BluezEndpoint *>(apClosure);
634
- BluezConnection * conn = GetBluezConnectionViaDevice (endpoint);
635
-
636
- ChipLogDetail (Ble, " Indication confirmation, %p" , conn);
637
- BLEManagerImpl::HandleTXComplete (conn);
638
-
639
- return TRUE ;
640
- }
641
-
642
630
static gboolean BluezCharacteristicStopNotifyError (BluezGattCharacteristic1 * aChar, GDBusMethodInvocation * aInvocation)
643
631
{
644
632
g_dbus_method_invocation_return_dbus_error (aInvocation, " org.bluez.Error.Failed" ,
@@ -1235,7 +1223,7 @@ static void BluezPeripheralObjectsSetup(gpointer apClosure)
1235
1223
{
1236
1224
1237
1225
static const char * const c1_flags[] = { " write" , nullptr };
1238
- static const char * const c2_flags[] = { " read" , " indicate " , nullptr };
1226
+ static const char * const c2_flags[] = { " read" , " notify " , nullptr };
1239
1227
static const char * const c3_flags[] = { " read" , nullptr };
1240
1228
1241
1229
BluezEndpoint * endpoint = static_cast <BluezEndpoint *>(apClosure);
@@ -1264,7 +1252,7 @@ static void BluezPeripheralObjectsSetup(gpointer apClosure)
1264
1252
g_signal_connect (endpoint->mpC2 , " handle-acquire-notify" , G_CALLBACK (BluezCharacteristicAcquireNotify), apClosure);
1265
1253
g_signal_connect (endpoint->mpC2 , " handle-start-notify" , G_CALLBACK (BluezCharacteristicStartNotify), apClosure);
1266
1254
g_signal_connect (endpoint->mpC2 , " handle-stop-notify" , G_CALLBACK (BluezCharacteristicStopNotify), apClosure);
1267
- g_signal_connect (endpoint->mpC2 , " handle-confirm" , G_CALLBACK (BluezCharacteristicConfirm ), apClosure);
1255
+ g_signal_connect (endpoint->mpC2 , " handle-confirm" , G_CALLBACK (BluezCharacteristicConfirmError ), apClosure);
1268
1256
1269
1257
ChipLogDetail (DeviceLayer, " CHIP BTP C1 %s" , bluez_gatt_characteristic1_get_service (endpoint->mpC1 ));
1270
1258
ChipLogDetail (DeviceLayer, " CHIP BTP C2 %s" , bluez_gatt_characteristic1_get_service (endpoint->mpC2 ));
@@ -1281,7 +1269,7 @@ static void BluezPeripheralObjectsSetup(gpointer apClosure)
1281
1269
g_signal_connect (endpoint->mpC3 , " handle-acquire-notify" , G_CALLBACK (BluezCharacteristicAcquireNotify), apClosure);
1282
1270
g_signal_connect (endpoint->mpC3 , " handle-start-notify" , G_CALLBACK (BluezCharacteristicStartNotify), apClosure);
1283
1271
g_signal_connect (endpoint->mpC3 , " handle-stop-notify" , G_CALLBACK (BluezCharacteristicStopNotify), apClosure);
1284
- g_signal_connect (endpoint->mpC3 , " handle-confirm" , G_CALLBACK (BluezCharacteristicConfirm ), apClosure);
1272
+ g_signal_connect (endpoint->mpC3 , " handle-confirm" , G_CALLBACK (BluezCharacteristicConfirmError ), apClosure);
1285
1273
// update the characteristic value
1286
1274
UpdateAdditionalDataCharacteristic (endpoint->mpC3 );
1287
1275
ChipLogDetail (DeviceLayer, " CHIP BTP C3 %s" , bluez_gatt_characteristic1_get_service (endpoint->mpC3 ));
@@ -1369,7 +1357,7 @@ static int StartupEndpointBindings(BluezEndpoint * endpoint)
1369
1357
return 0 ;
1370
1358
}
1371
1359
1372
- static gboolean BluezC2Indicate (ConnectionDataBundle * closure)
1360
+ static gboolean BluezC2Notify (ConnectionDataBundle * closure)
1373
1361
{
1374
1362
BluezConnection * conn = nullptr ;
1375
1363
GError * error = nullptr ;
@@ -1381,7 +1369,7 @@ static gboolean BluezC2Indicate(ConnectionDataBundle * closure)
1381
1369
1382
1370
conn = closure->mpConn ;
1383
1371
VerifyOrExit (conn != nullptr , ChipLogError (DeviceLayer, " BluezConnection is NULL in %s" , __func__));
1384
- VerifyOrExit (conn->mpC2 != nullptr , ChipLogError (DeviceLayer, " FAIL: C2 Indicate : %s" , " NULL C2" ));
1372
+ VerifyOrExit (conn->mpC2 != nullptr , ChipLogError (DeviceLayer, " FAIL: C2 Notify : %s" , " NULL C2" ));
1385
1373
1386
1374
if (bluez_gatt_characteristic1_get_notify_acquired (conn->mpC2 ) == TRUE )
1387
1375
{
@@ -1392,14 +1380,16 @@ static gboolean BluezC2Indicate(ConnectionDataBundle * closure)
1392
1380
g_variant_unref (closure->mpVal );
1393
1381
closure->mpVal = nullptr ;
1394
1382
1395
- VerifyOrExit (status == G_IO_STATUS_NORMAL, ChipLogError (DeviceLayer, " FAIL: C2 Indicate : %s" , error->message ));
1383
+ VerifyOrExit (status == G_IO_STATUS_NORMAL, ChipLogError (DeviceLayer, " FAIL: C2 Notify : %s" , error->message ));
1396
1384
}
1397
1385
else
1398
1386
{
1399
1387
bluez_gatt_characteristic1_set_value (conn->mpC2 , closure->mpVal );
1400
1388
closure->mpVal = nullptr ;
1401
1389
}
1402
1390
1391
+ BLEManagerImpl::HandleTXComplete (conn);
1392
+
1403
1393
exit :
1404
1394
if (closure != nullptr )
1405
1395
{
@@ -1430,7 +1420,7 @@ bool SendBluezIndication(BLE_CONNECTION_OBJECT apConn, chip::System::PacketBuffe
1430
1420
1431
1421
VerifyOrExit (!apBuf.IsNull (), ChipLogError (DeviceLayer, " apBuf is NULL in %s" , __func__));
1432
1422
1433
- success = MainLoop::Instance ().Schedule (BluezC2Indicate , MakeConnectionDataBundle (apConn, apBuf));
1423
+ success = MainLoop::Instance ().Schedule (BluezC2Notify , MakeConnectionDataBundle (apConn, apBuf));
1434
1424
1435
1425
exit :
1436
1426
return success;
@@ -1683,7 +1673,7 @@ static gboolean SubscribeCharacteristicImpl(BluezConnection * connection)
1683
1673
VerifyOrExit (connection->mpC2 != nullptr , ChipLogError (DeviceLayer, " C2 is NULL in %s" , __func__));
1684
1674
c2 = BLUEZ_GATT_CHARACTERISTIC1 (connection->mpC2 );
1685
1675
1686
- // Get notifications on the TX characteristic change (e.g. indication is received)
1676
+ // Get notifications on the TX characteristic change (e.g. notification is received)
1687
1677
g_signal_connect (c2, " g-properties-changed" , G_CALLBACK (OnCharacteristicChanged), connection);
1688
1678
bluez_gatt_characteristic1_call_start_notify (connection->mpC2 , nullptr , SubscribeCharacteristicDone, connection);
1689
1679
0 commit comments