Inquiry Regarding Support for Indication Method in Nordic nRF52840

I am reaching out to inquire about the support for the indication method in the Nordic nRF52840. Could you please confirm whether this method is supported in the Nordic SDK for the nRF52840 platform?

If supported, I would greatly appreciate it if you could provide an example of how to implement this functionality. Specifically, I am looking for guidance on using indications in a Bluetooth Low Energy (BLE) application.

Thank you.

Parents
  • Hi,

    Both notifications and indications are supported in the nRF Connect SDK, for all BLE devices, although most (if not all) of the implemented profiles and samples in the SDK uses notifications.

    Please note that most profiles from Bluetooth SIG, as well as custom (vendor specific) services and characteristics, tend to use notifications instead of indications. Notifications have less overhead, and for most practical purposes notifications are all that you need. BLE packets are resent until delivered or the connection breaks, so the only situation where indications could provide significant information is when the connection is lost shortly after the indication was sent. Please note however that even a successful indication doesn't necessarily mean successful delivery of the data, since for smartphones the indication is handled at OS level. After that, the information may or may not reach the application, depending on what happens on that smart phone. (Power loss, application freezes or abruptly closes, etc.)

    You will find a detailed walk-through for implementing indications in our Bluetooth Low Energy Fundamentals course on DevAcademy, as part of the exercises for lession 4 of that course (lesson 4, exercise 2). I highly recommend the full course for a comprehensive introduction to BLE in nRF Connect SDK.

    Regards,
    Terje

Reply
  • Hi,

    Both notifications and indications are supported in the nRF Connect SDK, for all BLE devices, although most (if not all) of the implemented profiles and samples in the SDK uses notifications.

    Please note that most profiles from Bluetooth SIG, as well as custom (vendor specific) services and characteristics, tend to use notifications instead of indications. Notifications have less overhead, and for most practical purposes notifications are all that you need. BLE packets are resent until delivered or the connection breaks, so the only situation where indications could provide significant information is when the connection is lost shortly after the indication was sent. Please note however that even a successful indication doesn't necessarily mean successful delivery of the data, since for smartphones the indication is handled at OS level. After that, the information may or may not reach the application, depending on what happens on that smart phone. (Power loss, application freezes or abruptly closes, etc.)

    You will find a detailed walk-through for implementing indications in our Bluetooth Low Energy Fundamentals course on DevAcademy, as part of the exercises for lession 4 of that course (lesson 4, exercise 2). I highly recommend the full course for a comprehensive introduction to BLE in nRF Connect SDK.

    Regards,
    Terje

Children
No Data
Related