But the feature of my device is that after it's connected, it doesn't send data until it's brought to the skin.
I am trying to read the data by changing the battery UUID.
'BLE_GATTC_EVT_READ_RSP' calls but fails to read data, so 'BLE_GATTC_EVT_HVX' is not called and 'on_hvx' is also not called.
So when I press button 3, I want to call one of those functions, but I don't know how to approach it.
I wrote a case statement about pressing button, and I just need to call it.
case BSP_INDICATE_ALERT_2:
m_leds_clear = true;
bsp_board_led_invert(BSP_LED_BUTTON_3);
err_code = app_timer_start(m_bsp_leds_tmr, APP_TIMER_TICKS(BSP_BUTTON_PUSH_INTERVAL), NULL);
//add here something...?
break;Anyway, is there a way to call the 'on_read_rsp' function again?
Besides what I thought, please tell me various solutions.
