本文主要是介绍【MTK平台】从蓝牙源码分析—Gatt如何写入数据到设备里面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. BluetoothGatt中的writeCharacteristic的实现在GattService中,通过jni的方式调用gattClientWriteCharacteristicNative方法
vendor/mediatek/proprietary/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/GattService.java
3833 @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
3834 int writeCharacteristic(int clientIf, String address, int handle, int writeType, int authReq,
3835 byte[] value, AttributionSource attributionSource) {....
3872
3873 gattClientWriteCharacteristicNative(connId, handle, writeType, authReq, value);
3874 return BluetoothStatusCodes.SUCCESS;
3875 }
2. gattClientWriteCharacteristicNative是实现在com_android_bluetooth_gatt.cpp方法中,主要调用write_characteristic方法
vendor/mediatek/proprietary/packages/modules/Bluetooth/android/app/jni/com_android_bluetooth_gatt.cpp
1447 static void gattClientWriteCharacteri
这篇关于【MTK平台】从蓝牙源码分析—Gatt如何写入数据到设备里面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!