Searched refs:rpt (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.4.0/components/partition_table/test_gen_esp32part_host/ |
D | gen_esp32part_tests.py | 498 def rpt(args): function 502 … rpt(['--partition-type', 'data', '--partition-subtype', 'nvs', '--info', 'offset']), b'0x9000') 504 … rpt(['--partition-type', 'data', '--partition-subtype', 'nvs', '--info', 'size']), b'0x4000') 506 rpt(['--partition-name', 'otadata', '--info', 'offset']), b'0xd000') 508 rpt(['--partition-boot-default', '--info', 'offset']), b'0x10000') 510 …rpt(['--partition-type', 'data', '--partition-subtype', 'nvs', '--info', 'name', 'offset', 'size',… 513 …rpt(['--partition-type', 'data', '--partition-subtype', 'nvs', '--info', 'name', 'offset', 'size',… 516 … rpt(['--partition-type', 'data', '--partition-subtype', 'nvs', '--info', 'name', '--part_list']), 519 …rpt(['--partition-type', 'data', '--partition-subtype', 'nvs_keys', '--info', 'name', '--part_list… 522 rpt(['--partition-name', 'nvs', '--info', 'encrypted']), b'False') [all …]
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/ble/ble_hid_device_demo/main/ |
D | hid_dev.c | 27 hid_report_map_t *rpt = hid_dev_rpt_tbl; in hid_dev_rpt_by_id() local 29 for (uint8_t i = hid_dev_rpt_tbl_Len; i > 0; i--, rpt++) { in hid_dev_rpt_by_id() 30 if (rpt->id == id && rpt->type == type && rpt->mode == hidProtocolMode) { in hid_dev_rpt_by_id() 31 return rpt; in hid_dev_rpt_by_id()
|
/hal_espressif-3.4.0/components/esp_hid/src/ |
D | bt_hidd.c | 157 hidd_report_item_t *rpt = NULL; in get_report_by_idx_id_type() local 163 rpt = &dev->devices[index].reports[i]; in get_report_by_idx_id_type() 164 …if (rpt->report_id == id && rpt->report_type == type && rpt->protocol_mode == dev->protocol_mode) { in get_report_by_idx_id_type() 165 return rpt; in get_report_by_idx_id_type() 173 hidd_report_item_t *rpt = NULL; in get_report_by_id_and_type() local 176 rpt = &dev->devices[idx].reports[i]; in get_report_by_id_and_type() 177 …if (rpt->report_id == id && rpt->report_type == type && rpt->protocol_mode == dev->protocol_mode) { in get_report_by_id_and_type() 181 return rpt; in get_report_by_id_and_type() 273 hidd_report_item_t *rpt = NULL; in get_value_len_by_type_protocol() local 276 rpt = &dev->devices[d].reports[i]; in get_value_len_by_type_protocol() [all …]
|
D | ble_hidd.c | 343 hidd_le_report_item_t *rpt = NULL; in link_report_handles() local 345 rpt = &dev->reports[i]; in link_report_handles() 346 rpt->handle = handles[rpt->index]; in link_report_handles() 347 if (rpt->report_type == ESP_HID_REPORT_TYPE_INPUT) { in link_report_handles() 348 rpt->ccc_handle = handles[rpt->index + 1]; in link_report_handles() 355 hidd_le_report_item_t *rpt = NULL; in get_report_by_handle() local 358 rpt = &dev->devices[d].reports[i]; in get_report_by_handle() 359 if (rpt->handle == handle || rpt->ccc_handle == handle) { in get_report_by_handle() 360 return rpt; in get_report_by_handle() 369 hidd_le_report_item_t *rpt = NULL; in get_report_by_id_and_type() local [all …]
|
/hal_espressif-3.4.0/components/hal/ |
D | adc_hal.c | 630 for (uint8_t rpt = 0 ; rpt < ADC_HAL_CAL_TIMES ; rpt ++) { in adc_hal_self_calibration() local 651 code_list[rpt] = chk_code; in adc_hal_self_calibration()
|