提交 a12d609b 编写于 作者: A Arjan Mels 提交者: Me No Dev

Corrected count of characteristics to get (#3082)

Only space for 1 characteristic is allocated, requesting 10 leads to stack corruption.
上级 73576674
......@@ -164,7 +164,7 @@ void BLERemoteService::retrieveCharacteristics() {
uint16_t offset = 0;
esp_gattc_char_elem_t result;
while (true) {
uint16_t count = 10; // this value is used as in parameter that allows to search max 10 chars with the same uuid
uint16_t count = 1; // only room for 1 result allocated, so go one by one
esp_gatt_status_t status = ::esp_ble_gattc_get_all_char(
getClient()->getGattcIf(),
getClient()->getConnId(),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册