Lines Matching refs:value_handle
734 mp_int_t value_handle = mp_obj_get_int(args[2]); in bluetooth_ble_gatts_notify() local
739 … int err = mp_bluetooth_gatts_notify_send(conn_handle, value_handle, bufinfo.buf, bufinfo.len); in bluetooth_ble_gatts_notify()
743 int err = mp_bluetooth_gatts_notify(conn_handle, value_handle); in bluetooth_ble_gatts_notify()
752 mp_int_t value_handle = mp_obj_get_int(value_handle_in); in bluetooth_ble_gatts_indicate() local
754 int err = mp_bluetooth_gatts_indicate(conn_handle, value_handle); in bluetooth_ble_gatts_indicate()
760 mp_int_t value_handle = mp_obj_get_int(args[1]); in bluetooth_ble_gatts_set_buffer() local
763 return bluetooth_handle_errno(mp_bluetooth_gatts_set_buffer(value_handle, len, append)); in bluetooth_ble_gatts_set_buffer()
813 mp_int_t value_handle = mp_obj_get_int(value_handle_in); in bluetooth_ble_gattc_read() local
814 return bluetooth_handle_errno(mp_bluetooth_gattc_read(conn_handle, value_handle)); in bluetooth_ble_gattc_read()
820 mp_int_t value_handle = mp_obj_get_int(args[2]); in bluetooth_ble_gattc_write() local
829 …return bluetooth_handle_errno(mp_bluetooth_gattc_write(conn_handle, value_handle, bufinfo.buf, &le… in bluetooth_ble_gattc_write()
1215 void mp_bluetooth_gatts_on_write(uint16_t conn_handle, uint16_t value_handle) { in mp_bluetooth_gatts_on_write() argument
1216 mp_int_t args[] = {conn_handle, value_handle}; in mp_bluetooth_gatts_on_write()
1220 void mp_bluetooth_gatts_on_indicate_complete(uint16_t conn_handle, uint16_t value_handle, uint8_t s… in mp_bluetooth_gatts_on_indicate_complete() argument
1221 mp_int_t args[] = {conn_handle, value_handle, status}; in mp_bluetooth_gatts_on_indicate_complete()
1225 mp_int_t mp_bluetooth_gatts_on_read_request(uint16_t conn_handle, uint16_t value_handle) { in mp_bluetooth_gatts_on_read_request() argument
1226 mp_int_t args[] = {conn_handle, value_handle}; in mp_bluetooth_gatts_on_read_request()
1287 …acteristic_result(uint16_t conn_handle, uint16_t def_handle, uint16_t value_handle, uint8_t proper… in mp_bluetooth_gattc_on_characteristic_result() argument
1288 mp_int_t args[] = {conn_handle, def_handle, value_handle, properties}; in mp_bluetooth_gattc_on_characteristic_result()
1302 …gattc_on_data_available(uint8_t event, uint16_t conn_handle, uint16_t value_handle, const uint8_t … in mp_bluetooth_gattc_on_data_available() argument
1326 mp_int_t args[] = {conn_handle, value_handle}; in mp_bluetooth_gattc_on_data_available()
1334 …tc_on_read_write_status(uint8_t event, uint16_t conn_handle, uint16_t value_handle, uint16_t statu… in mp_bluetooth_gattc_on_read_write_status() argument
1335 mp_int_t args[] = {conn_handle, value_handle, status}; in mp_bluetooth_gattc_on_read_write_status()
1416 void mp_bluetooth_gatts_on_write(uint16_t conn_handle, uint16_t value_handle) { in mp_bluetooth_gatts_on_write() argument
1421 ringbuf_put16(&o->ringbuf, value_handle); in mp_bluetooth_gatts_on_write()
1426 void mp_bluetooth_gatts_on_indicate_complete(uint16_t conn_handle, uint16_t value_handle, uint8_t s… in mp_bluetooth_gatts_on_indicate_complete() argument
1431 ringbuf_put16(&o->ringbuf, value_handle); in mp_bluetooth_gatts_on_indicate_complete()
1437 mp_int_t mp_bluetooth_gatts_on_read_request(uint16_t conn_handle, uint16_t value_handle) { in mp_bluetooth_gatts_on_read_request() argument
1439 (void)value_handle; in mp_bluetooth_gatts_on_read_request()
1500 …acteristic_result(uint16_t conn_handle, uint16_t def_handle, uint16_t value_handle, uint8_t proper… in mp_bluetooth_gattc_on_characteristic_result() argument
1506 ringbuf_put16(&o->ringbuf, value_handle); in mp_bluetooth_gattc_on_characteristic_result()
1534 …gattc_on_data_available(uint8_t event, uint16_t conn_handle, uint16_t value_handle, const uint8_t … in mp_bluetooth_gattc_on_data_available() argument
1549 ringbuf_put16(&o->ringbuf, value_handle); in mp_bluetooth_gattc_on_data_available()
1565 …tc_on_read_write_status(uint8_t event, uint16_t conn_handle, uint16_t value_handle, uint16_t statu… in mp_bluetooth_gattc_on_read_write_status() argument
1570 ringbuf_put16(&o->ringbuf, value_handle); in mp_bluetooth_gattc_on_read_write_status()