Home
last modified time | relevance | path

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

/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/mlmr/
Dmlmr.c439 gatts_noti_ind_t send_cmd;
443 send_cmd.type = BLE_GATT_NOTIFICATION;
444send_cmd.handle = prf_find_handle_by_idx(GUS_IDX_TX_VAL, s_gus_env.start_hdl, (uint8_t *)&s_char_m…
448 send_cmd.value = buffer;
449 send_cmd.length = MAX_MTU_DEFUALT - MTU_DEF_OFFSET;
450 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd);
456 send_cmd.length = length;
457 send_cmd.value = buffer;
458 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd);
461 send_cmd.value = buffer;
[all …]
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/ths/
Dths.c407 gatts_noti_ind_t send_cmd; in ths_data_send() local
410 send_cmd.type = BLE_GATT_NOTIFICATION; in ths_data_send()
411send_cmd.handle = prf_find_handle_by_idx(THS_IDX_TX_VAL, s_ths_env.start_hdl, (uint8_t *)&s_char_m… in ths_data_send()
413 send_cmd.length = length; in ths_data_send()
414 send_cmd.value = p_data; in ths_data_send()
416 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd); in ths_data_send()
428 gatts_noti_ind_t send_cmd; in ths_settings_notify() local
431 send_cmd.type = BLE_GATT_NOTIFICATION; in ths_settings_notify()
432send_cmd.handle = prf_find_handle_by_idx(THS_IDX_SETTINGS_VAL, s_ths_env.start_hdl, (uint8_t *)&s_… in ths_settings_notify()
435 send_cmd.length = length; in ths_settings_notify()
[all …]
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/gus/
Dgus.c403 gatts_noti_ind_t send_cmd; in gus_tx_data_send() local
407 send_cmd.type = BLE_GATT_NOTIFICATION; in gus_tx_data_send()
408send_cmd.handle = prf_find_handle_by_idx(GUS_IDX_TX_VAL, s_gus_env.start_hdl, (uint8_t *)&s_char_m… in gus_tx_data_send()
411 send_cmd.length = length; in gus_tx_data_send()
412 send_cmd.value = p_data; in gus_tx_data_send()
415 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd); in gus_tx_data_send()
424 gatts_noti_ind_t send_cmd; in gus_rx_flow_ctrl_set() local
428 send_cmd.type = BLE_GATT_NOTIFICATION; in gus_rx_flow_ctrl_set()
429send_cmd.handle = prf_find_handle_by_idx(GUS_IDX_FLOW_CTRL_VAL, s_gus_env.start_hdl, (uint8_t *)&s… in gus_rx_flow_ctrl_set()
432 send_cmd.length = 1; in gus_rx_flow_ctrl_set()
[all …]
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/fast_otas/
Dfast_otas.c376 gatts_noti_ind_t send_cmd; in fast_otas_notify_cmd_data() local
380 send_cmd.type = BLE_GATT_NOTIFICATION; in fast_otas_notify_cmd_data()
381 send_cmd.handle = prf_find_handle_by_idx(FAST_OTAS_IDX_CMD_VAL, s_fast_otas_env.start_hdl, in fast_otas_notify_cmd_data()
384 send_cmd.length = len; in fast_otas_notify_cmd_data()
385 send_cmd.value = p_data; in fast_otas_notify_cmd_data()
387 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd); in fast_otas_notify_cmd_data()
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/otas/
Dotas.c388 gatts_noti_ind_t send_cmd;
392 send_cmd.type = BLE_GATT_NOTIFICATION;
393send_cmd.handle = prf_find_handle_by_idx(OTAS_IDX_TX_VAL, s_otas_env.start_hdl, (uint8_t*)&s_char_…
395 send_cmd.length = len;
396 send_cmd.value = p_data;
398 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd);
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/bas/
Dbas.c351 gatts_noti_ind_t send_cmd; in bas_batt_lvl_update() local
358 send_cmd.type = BLE_GATT_NOTIFICATION; in bas_batt_lvl_update()
359 send_cmd.handle = prf_find_handle_by_idx(BAS_IDX_BATT_LVL_VAL, in bas_batt_lvl_update()
363 send_cmd.length = sizeof(uint8_t); in bas_batt_lvl_update()
364 send_cmd.value = &s_bas_env[ins_idx].bas_init.batt_lvl; in bas_batt_lvl_update()
367 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd); in bas_batt_lvl_update()
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/sample/
Dsample_service.c390 gatts_noti_ind_t send_cmd;
395 send_cmd.type = BLE_GATT_NOTIFICATION;
396 send_cmd.handle = prf_find_handle_by_idx(SAMPLES_IDX_TX_VAL,
400 send_cmd.length = length;
401 send_cmd.value = p_data;
405 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd);
/device/soc/goodix/gr551x/sdk_liteos/gr551x_sdk/components/profiles/pcs/
Dpcs.c417 gatts_noti_ind_t send_cmd; in pcs_setting_reply() local
421 send_cmd.type = BLE_GATT_INDICATION; in pcs_setting_reply()
422send_cmd.handle = prf_find_handle_by_idx(PCS_IDX_SETTING_VAL, s_pcs_env.start_hdl, (uint8_t *)&s_c… in pcs_setting_reply()
425 send_cmd.length = length; in pcs_setting_reply()
426 send_cmd.value = p_data; in pcs_setting_reply()
429 error_code = ble_gatts_noti_ind(conn_idx, &send_cmd); in pcs_setting_reply()
/device/soc/rockchip/common/hardware/mpp/include/
Dmpp_service.h107 unsigned int send_cmd; member
/device/soc/rockchip/rk3568/hardware/mpp/include/
Dmpp_service.h107 RK_U32 send_cmd; member
/device/soc/rockchip/rk3399/hardware/mpp/include/
Dmpp_service.h107 RK_U32 send_cmd; member
/device/soc/rockchip/rk3588/hardware/mpp/include/
Dmpp_service.h109 RK_U32 send_cmd; member