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

notifications for two characteristics is not working

Hello,

I have one service and two characteristics in my example code.

I have used the Github tutorial to learn how the notification works. I followed the same for my implementation.

When i test the notification separately by commenting out the code in the notification handler it works fine. Both the characteristics notification is working properly without any problem but when i enable two notifications in two characteristics it gives out error with an error code 13313 when trying to send the values to android application.

My code snippet is attached

The above code snippet is from custom service file which has two characteristics and one service with two functions for notification.

/**@brief Function for handling the Battery measurement timer timeout.
*
* @details This function will be called each time the battery level measurement timer expires.
*
* @param[in] p_context Pointer used for passing some arbitrary information (context) from the
* app_start_timer() call to the timeout handler.
*/
static void notification_timeout_handler(TimerHandle_t xTimer)
{
UNUSED_PARAMETER(xTimer);
ret_code_t err_code;

// // Increment the value of m_custom_value before nortifing it.
m_custom_value++;
d_custom_value++;

err_code = ble_cus_custom_value_update(&m_cus, m_custom_value);
APP_ERROR_CHECK(err_code);

err_code = ble_tmp_custom_value_update(&m_cus, d_custom_value);
APP_ERROR_CHECK(err_code);
}

Here in the above code when i comment out either of the functions the notification works fine. If i keep both the update functions it shows an error code 13313.

It would be great if someone can help me solve this issue in the earliest as my project is in a critical stage.

Related