- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个蓝牙服务器,它使用 bleno 并向客户端返回可用 Wifi 网络的列表。 readCharacteristic
的代码基本上如下所示:
class ReadCharacteristic extends bleno.Characteristic {
constructor(uuid, name, action) {
super({
uuid: uuid,
properties: ["read"],
value: null,
descriptors: [
new bleno.Descriptor({
uuid: "2901",
value: name
})
]
});
this.actionFunction = action;
}
onReadRequest(offset, callback) {
console.log("Offset: " + offset);
if(offset === 0) {
const result = this.actionFunction();
result.then(value => {
this.actionFunctionResult = value;
const data = new Buffer.from(value).slice(0,bleno.mtu);
console.log("onReadRequest: " + data.toString('utf-8'));
callback(this.RESULT_SUCCESS, data);
}, err => {
console.log("onReadRequest error: " + err);
callback(this.RESULT_UNLIKELY_ERROR);
}).catch( err => {
console.log("onReadRequest error: " + err);
callback(this.RESULT_UNLIKELY_ERROR);
});
}
else {
let data = new Buffer.from(this.actionFunctionResult);
if(offset > data.length) {
callback(this.RESULT_INVALID_OFFSET, null);
}
data = data.slice(offset+1, offset+bleno.mtu);
console.log(data.toString('utf-8'));
callback(this.RESULT_SUCCESS, data);
}
}
}
(我已经尝试过 data = data.slice(offset+1, offset+bleno.mtu);
并像这样 data = data.slice(offset+1);
)
客户端是一个读取该特征的 Android 应用。
用于阅读的 Android 部分如下所示:
@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status,
int newState) {
if (newState == BluetoothProfile.STATE_CONNECTED) {
gatt.requestMtu(256);
} else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
Log.i(TAG, "Disconnected from GATT server.");
mFancyShowCaseView.show();
gatt.close();
scanForBluetoothDevices();
}
}
@Override
public void onMtuChanged(BluetoothGatt gatt, int mtu, int status) {
if (status != BluetoothGatt.GATT_SUCCESS) {
Log.e(TAG, "Can't set mtu to: " + mtu);
} else {
Log.i(TAG, "Connected to GATT server. MTU: " + mtu);
Log.i(TAG, "Attempting to start service discovery:" +
mWifiProvisioningService.discoverServices());
}
}
@Override
// New services discovered
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
Log.d(TAG, "ACTION_GATT_SERVICES_DISCOVERED");
BluetoothGattService wifiProvisioningService = gatt.getService(WIFI_PROVISIONING_SERVICE_UUID);
BluetoothGattCharacteristic currentConnectedWifiCharacteristic = wifiProvisioningService.getCharacteristic(WIFI_ID_UUID);
BluetoothGattCharacteristic availableWifiCharacteristic = wifiProvisioningService.getCharacteristic(WIFI_SCAN_UUID);
// Only read the first characteristic and add the 2nd one to a list as we have to wait
// for the read return before we read the 2nd one.
if (!gatt.readCharacteristic(currentConnectedWifiCharacteristic)) {
Log.e(TAG, "Error while reading current connected wifi name.");
}
readCharacteristics.add(availableWifiCharacteristic);
} else {
Log.w(TAG, "onServicesDiscovered received: " + status);
}
}
@Override
// Result of a characteristic read operation
public void onCharacteristicRead(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic,
int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
UUID characteristicUUID = characteristic.getUuid();
if (WIFI_ID_UUID.equals(characteristicUUID)) {
Log.d(TAG, "HEUREKA we found the current wifi name: " + new String(characteristic.getValue()));
final String currentWifiName = new String(characteristic.getValue());
runOnUiThread(new Runnable() {
@Override
public void run() {
((TextView) findViewById(R.id.currentWifiTxt)).setText(currentWifiName);
findViewById(R.id.currentWifiTxtProgress).setVisibility(View.GONE);
}
});
} else if (WIFI_SCAN_UUID.equals(characteristicUUID)) {
Log.d(TAG, "HEUREKA we found the wifi list: " + new String(characteristic.getValue()));
List<String> wifiListArrayList = new ArrayList<>();
try {
JSONObject wifiListRoot = new JSONObject(characteristic.getStringValue(0));
JSONArray wifiListJson = wifiListRoot.getJSONArray("list");
for (int i = 0; i < wifiListJson.length(); i++) {
wifiListArrayList.add(wifiListJson.get(i).toString());
}
} catch (JSONException e) {
Log.e(TAG, e.toString());
return;
}
final String[] wifiList = new String[wifiListArrayList.size()];
wifiListArrayList.toArray(wifiList);
runOnUiThread(new Runnable() {
@Override
public void run() {
((ListView) findViewById(R.id.availableWifiList)).setAdapter(new ArrayAdapter<String>(mContext, R.layout.wifi_name_list_item, wifiList));
findViewById(R.id.currentWifiTxtProgress).setVisibility(View.GONE);
}
});
} else {
Log.i(TAG, "Unexpected Gatt vale: " + new String(characteristic.getValue()));
}
if (readCharacteristics.size() > 0) {
BluetoothGattCharacteristic readCharacteristic = readCharacteristics.get(0);
if (!gatt.readCharacteristic(readCharacteristic)) {
Log.e(TAG, "Error while writing descriptor for connected wifi");
}
readCharacteristics.remove(readCharacteristic);
}
}
}
MTU调整为256字节。我在阅读列表时反射(reflect)在服务器上。调用本身工作正常并返回列表,但如果列表包含超过 600 字节,则只有 600 字节在 Android 上可用。我以某种方式确定 JS 服务器发送了所有数据,但出于某种原因,Android 客户端仅接收或缓存 600 字节,这似乎不正确。
我找到了这篇文章:Android BLE - Peripheral | onCharacteristicRead return wrong value or part of it (but repeated)
还有这个: Android BLE - How is large characteristic value read in chunks (using an offset)?
但是两者都没有解决我的问题。我知道在开始下一次读取之前我需要等待一次读取返回,并且我需要等到 MTU 写入后再继续读取数据。据我所知,这反射(reflect)在您在上面看到的来源中。我有点迷路了。
任何想法都会受到高度赞赏。
非常感谢
最佳答案
对于看到这篇文章的任何人也想知道为什么 Android 似乎只返回 600 字节的长 GATT 特性,就像这个问题所询问的那样,这一切都归结为 Bluedroid(Android 的蓝牙堆栈)如何实现他们的 GATT 客户端及其如何超出规范。就我而言,我使用基于 ESP32 的物联网设备作为我的 GATT 服务器和 Android (SDK 24) 作为 GATT 客户端。
根据规范(蓝牙核心 4.2;第 3 卷,F 部分:3.2.9),特征值(继承自 ATT 的属性值)的最大大小为 512 字节。然而,出于某种原因,Bluedroid 并没有尝试强制执行此要求,而是决定将最大大小设置为 600;如果您深入研究 Bluedroid 源代码并找到设置为 600 的宏 GATT_MAX_ATTR_LEN
(stack/include/gatt_api.h:125
),就可以看到这一点。因为在我的情况下(和你的情况一样)我正在实现读取请求响应代码,所以我也没有看到对特征的读取强制执行 512 字节的限制。
现在,重要的是要了解 Bluedroid 的读取特性,以及它与 MTU 大小、读取的最大大小(应为 512,但 Bluedroid 为 600)以及如何处理超过最大尺寸。 MTU 大小是您可以使用的 ATT 级别的最大数据包大小。因此,对于每次调用 BluetoothGatt.readCharacteristic
,您可能会向服务器发送一个或多个读取请求,具体取决于 Bluedroid 是否认为特征大小超过 MTU 大小。在低级别上,Bluedroid 将首先发送一个 ATT 读取请求(0x0a
),如果数据包的长度为 MTU 字节,它将跟进一个 ATT 读取 Blob 请求(0x0c
) code>) 并将偏移量设置为 MTU 大小。它将继续发送 ATT 读取 Blob 请求,直到 ATT 读取 Blob 响应的长度小于 MTU 字节或直到达到最大特征大小(即 Bluedroid 为 600)。重要的是要注意,如果对于超过 600 字节的数据,MTU 大小不是 600 的完美倍数,则剩余字节将被丢弃(因为 Bluedroid 实际上从未期望读取 600 字节,因为它认为 GATT 服务器将强制执行 512 字节特征尺寸的限制)。因此,如果您的数据超过 600 字节限制(或 512 安全限制),您应该多次调用 BluetoothGatt.readCharacteristic
。这是一个在 Android 端读取大量数据的简单示例(抱歉,我没有使用 bleno,所以无法为您提供修复该端的代码),它依赖于首先将数据长度作为无符号 32 位整数发送,然后如果数据超过 600 字节,则通过重复调用 BluetoothGatt.readCharacteristic
来读出数据:
private int readLength;
private StringBuilder packet; // In my case, Im building a string out of the data
@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status,
int newState) {
if (newState == BluetoothProfile.STATE_CONNECTED) {
gatt.requestMtu(201); // NOTE: If you are going to read a long piece of data, its best to make this value a factor of 600 + 1, like 51, 61, 101, 151, etc due to the risk of data loss if the last packet contains more than 600 bytes of cumulative data
}
}
@Override
public void onMtuChanged(BluetoothGatt gatt, int mtu, int status) {
gatt.discoverServices();
}
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
// Kick off a read
BluetoothGattCharacteristic characteristic = gatt.getService(UUID.fromString(SERVICE_UUID)).getCharacteristic(UUID.fromString(CHAR_UUID));
readLength = 0;
gatt.readCharacteristic(characteristic);
}
@Override
public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
if (readLength == 0) {
readLength = characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT32, 0);
packet = new StringBuilder();
gatt.readCharacteristic(characteristic);
} else {
byte[] data = charactertic.getValue();
packet.append(new String(data));
readLength -= data.length;
if (readLength == 0) {
// Got all data this time; you can now process the data however you want
} else {
gatt.readCharacteristic(characteristic);
}
}
}
关于javascript - Android BLE 客户端在 onCharacteristicRead 中只返回 600 字节的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48741196/
美好的一天!我试图添加两个字节变量并注意到奇怪的结果。 byte valueA = 255; byte valueB = 1; byte valueC = (byte)(valueA + valueB
嗨,我是 swift 的新手,我正在尝试解码以 [Byte] 形式发回给我的字节数组?当我尝试使用 if let string = String(bytes: d, encoding: .utf8)
我正在使用 ipv4 和 ipv6 存储在 postgres 数据库中。 因为 ipv4 需要 32 位(4 字节)而 ipv6 需要 128(16 字节)位。那么为什么在 postgres 中 CI
我很好奇为什么 Go 不提供 []byte(*string) 方法。从性能的角度来看,[]byte(string) 不会复制输入参数并增加更多成本(尽管这看起来很奇怪,因为字符串是不可变的,为什么要复
我正在尝试为UDP实现Stop-and-Wait ARQ。根据停止等待约定,我在 0 和 1 之间切换 ACK。 正确的 ACK 定义为正确的序列号(0 或 1)AND消息长度。 以下片段是我的代码的
我在下面写了一些代码,目前我正在测试,所以代码中没有数据库查询。 下面的代码显示 if(filesize($filename) != 0) 总是转到 else,即使文件不是 0 字节而是 16 字节那
我使用 Apache poi 3.8 来读取 xls 文件,但出现异常: java.io.IOException: Unable to read entire header; 0 by
字典大小为 72 字节(根据 getsizeof(dict) 在字典上调用 .clear() 之后发生了什么,当新实例化的字典返回 240 字节时? 我知道一个简单的 dict 的起始大小为“8”,并
我目前正在努力创建一个函数,它接受两个 4 字节无符号整数,并返回一个 8 字节无符号长整数。我试图将我的工作基于 this research 描述的方法,但我的所有尝试都没有成功。我正在处理的具体输
看看这个简单的程序: #include using namespace std; int main() { unsigned int i=0x3f800000; float* p=(float*)(
我创建了自己的函数,将一个字符串转换为其等效的 BCD 格式的 bytes[]。然后我将此字节发送到 DataOutputStram (使用需要 byte[] 数组的写入方法)。问题出在数字字符串“8
此分配器将在具有静态内存的嵌入式系统中使用(即,没有可用的系统堆,因此“堆”将只是“char heap[4096]”) 周围似乎有很多“小型内存分配器”,但我正在寻找能够处理非常小的分配的一个。我说的
我将数据库脚本从 64 位系统传输到 32 位系统。当我执行脚本时,出现以下错误, Warning! The maximum key length is 900 bytes. The index 'U
想知道 128 字节 ext2 和 256 字节 ext3 文件系统之间的 inode 数据结构差异。 我一直在为 ext2、128 字节 inode 使用此引用:http://www.nongnu.
我试图理解使用 MD5 哈希作为 Cassandra key 在“内存/存储消耗”方面的含义: 我的内容(在 Java 中)的 MD5 哈希 = byte[] 长 16 个字节。 (16 字节来自维基
检查其他人是否也遇到类似问题。 shell脚本中的代码: ## Convert file into Unix format first. ## THIS is IMPORTANT. ###
我们有一个测量数据处理应用程序,目前所有数据都保存为 C++ float,这意味着在我们的 x86/Windows 平台上为 32 位/4 字节。 (32 位 Windows 应用程序)。 由于精度成
我读到在 Java 中 long 类型可以提升为 float 和 double ( http://www.javatpoint.com/method-overloading-in-java )。我想问
我有一个包含 n 个十进制元素的列表,其中每个元素都是两个字节长。 可以说: x = [9000 , 5000 , 2000 , 400] 这个想法是将每个元素拆分为 MSB 和 LSB 并将其存储在
我使用以下代码进行 AES-128 加密来编码一个 16 字节的 block ,但编码值的长度给出了 2 个 32 字节的 block 。我错过了什么吗? plainEnc = AES.enc
我是一名优秀的程序员,十分优秀!