This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Docs on S110 software events?

Folks,

Is there a document that describes the events generated by the S110 Soft Device and their interpretation? (Note: they're not listed in the S110 SoftDevice Spec v1.1 PDF doc, and I can't find them in the (Doxygen-generated) API webpages included in the API release :-)

In particular, I infer from the spec that there are ACTIVE and nACTIVE events to signal when the radio is (about) to be powered on and off. Very useful. But I also need an event when the radio switches from transmit to receive or vice-versa (to control some external circuitry). Is that available? (short of monitoring supply current :-)

Mike

Parents
  • Well, by poking around in the S110 online API pages, I did find the following enum type: enum nrf_radio_notification_type_t which is used by the following function:

    uint32_t sd_radio_notification_cfg_set (nrf_radio_notification_type_t type, nrf_radio_notification_distance_t distance )

    but not much discussion.

    So, thus far, I infer that I can get events before the radio goes on, and when it goes off, but not when it switches between TX and RX.

    Mike

    PS: Why can't I use "[code]" around the second block above? If I do, it repeats the contents of the first one. :(

Reply
  • Well, by poking around in the S110 online API pages, I did find the following enum type: enum nrf_radio_notification_type_t which is used by the following function:

    uint32_t sd_radio_notification_cfg_set (nrf_radio_notification_type_t type, nrf_radio_notification_distance_t distance )

    but not much discussion.

    So, thus far, I infer that I can get events before the radio goes on, and when it goes off, but not when it switches between TX and RX.

    Mike

    PS: Why can't I use "[code]" around the second block above? If I do, it repeats the contents of the first one. :(

Children
No Data
Related