Home
last modified time | relevance | path

Searched refs:s_time_new (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.6.0/examples/bluetooth/bluedroid/classic_bt/hfp_ag/main/
Dbt_app_hf.c142 static uint64_t s_time_new, s_time_old; variable
174 s_time_new = esp_timer_get_time(); in bt_app_hf_incoming_cb()
176 if ((s_time_new - s_time_old) >= 3000000) { in bt_app_hf_incoming_cb()
197 float tick_s = (s_time_new - s_time_old) / 1000000.0; in print_speed()
199 …ESP_LOGI(BT_HF_TAG, "speed(%fs ~ %fs): %f kbit/s" , s_time_old / 1000000.0, s_time_new / 1000000.0… in print_speed()
201 s_time_old = s_time_new; in print_speed()