liang

Results 12 comments of liang

The below is my proposal. Please review it. If this is acceptable. We can implement in this way. /** \* @brief Start scanning for peripherals without filter * \* @param...

This always ignore the response in the stack. So the application can't get the result. This is the stack's limitation. And the return value stand for the gatt ccc write...

@hgflas , To output debug info to the Serial1, you can connect the USB-UART's RX to digital Pin1, GND to GND. And then try to output something to Serial1 to...

Which API you used? I test with .writeValue, it doesn't crash. So can you share your test sketches?

My test key code is: `unsigned char test_1[64]; credentials.writeValue(test_1, sizeof(test_1));` By the way, the stack only send out the 20 Bytes. Because the BLE protocol has this limitation. You'd better...

Hi @kgillespieanaren , In my test, I don't find the issue you described except some dirty value. The dirty value doesn't be cleared in the constructor. I test on IOS...

That's expected. Because your code use BLE object. The BLE object is used to manage the local device. So the code always return false. In your code, you need get...

Hi @sandeepmistry , I disagree with your opinion too. 1. The BLE can work in central mode and peripheral mode at same time. 2. The connected means the device connected...

Another scenario is the BLE is work in central mode. Does it return true if peripheral connected to it? If return true. Does this API can adapt here? If not,...