Results 21 comments of Paolo Calao

@facchinm I gave a look at the mbed `NRFCordioHCIDriver` implementation. It seems that the `start_reset_sequence()` function is used by the cordio **host** in order to reset the controller ([ref.](https://github.com/ARMmbed/mbed-os/blob/master/connectivity/drivers/ble/FEATURE_BLE/TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x/NRFCordioHCIDriver.cpp#L327-L333)). Since...

Hi @theelims , check https://github.com/arduino/ArduinoCore-nRF528x-mbedos/pull/72, in which I used functions of the Nordic SDK 15 directly, in order to exploit hardware peripherals (timer included). The problem of your sketch is...

The problem was introduced here https://github.com/arduino/ArduinoCore-nRF528x-mbedos/commit/01adfdccd26a4d618f0c14761cfb705f978c38ed , by setting the `WSF_MS_PER_TICK` to 10. I created a new branch in my fork of the nRF core, here https://github.com/Polldo/ArduinoCore-nRF528x-mbedos/commits/ble-multiconnection , that follows...

Hi @mattleesmi , Are you using a nano 33 ble? This issue is similar to this https://github.com/arduino-libraries/ArduinoBLE/issues/102 If too much time passes between calls to `BLE.poll()` function, it can happen...

Hi @mattleesmi do you have this problem on the nano 33 ble only? If so, please check if this patch solves your issue https://github.com/arduino-libraries/ArduinoBLE/pull/96

No, it's a nano33ble specific patch. Anyway, I took a look at your sketch. My suspicion is that too much time is spent between BLE updates, so the controller's queue...

Hi @JAICHANGPARK , as the error says, the callback should be a static function

Hi @willtmakinen78 and @Gerriko , thanks a lot for detailing the issue. In particular to @Gerriko for trying many combinations and posting logs! I should have found the problem with...

Hi @Hoffa25 , Using your sketch (https://github.com/arduino-libraries/ArduinoBLE/issues/45#issuecomment-622368639) I was not able to observe the reported error. I have used the following Setup: Arduino Core: Arduino-nRF582x version 1.1.5 and Arduino-mbed versione...

Hi @qazqwe345 , I've made a test using a nano33iot as a peripheral and a smartphone as central using the nordic nRF Connect application. Then, I also tried your sketches...