/hal_espressif-latest/components/bt/host/bluedroid/bta/hf_client/ |
D | bta_hf_client_act.c | 634 void bta_hf_client_clip(char *number) in bta_hf_client_clip() argument 639 strlcpy(evt->number, number, BTA_HF_CLIENT_NUMBER_LEN + 1); in bta_hf_client_clip() 640 evt->number[BTA_HF_CLIENT_NUMBER_LEN] = '\0'; in bta_hf_client_clip() 659 void bta_hf_client_ccwa(char *number) in bta_hf_client_ccwa() argument 664 strlcpy(evt->number, number, BTA_HF_CLIENT_NUMBER_LEN + 1); in bta_hf_client_ccwa() 665 evt->number[BTA_HF_CLIENT_NUMBER_LEN] = '\0'; in bta_hf_client_ccwa() 707 void bta_hf_client_clcc(UINT32 idx, BOOLEAN incoming, UINT8 status, BOOLEAN mpty, char *number) in bta_hf_client_clcc() argument 717 if (number) { in bta_hf_client_clcc() 719 strlcpy(evt->number, number, BTA_HF_CLIENT_NUMBER_LEN + 1); in bta_hf_client_clcc() 720 evt->number[BTA_HF_CLIENT_NUMBER_LEN] = '\0'; in bta_hf_client_clcc() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hf_ag/ |
D | btc_hf_ag.c | 645 const char *number, esp_hf_call_addr_type_t type) in btc_hf_clcc_response() argument 657 index, dir, current_call_state, mode, number, type); in btc_hf_clcc_response() 659 if (number) { in btc_hf_clcc_response() 660 if ((type == ESP_HF_CALL_ADDR_TYPE_INTERNATIONAL) && (*number != '+')) { in btc_hf_clcc_response() 661 sprintf(&ag_res.str[loc], ",\"+%s\",%d", number, type); in btc_hf_clcc_response() 663 sprintf(&ag_res.str[loc], ",\"%s\",%d", number, type); in btc_hf_clcc_response() 674 static bt_status_t btc_hf_cnum_response(bt_bdaddr_t *bd_addr, const char *number, int number_type, … in btc_hf_cnum_response() argument 682 …BTC_TRACE_EVENT("cnum_response: number = %s, number type = %d, service type = %d", number, number_… in btc_hf_cnum_response() 684 sprintf(ag_res.str, ",\"%s\",%d,,%d",number, number_type, service_type); in btc_hf_cnum_response() 686 sprintf(ag_res.str, ",\"%s\",%d,,",number, number_type); in btc_hf_cnum_response() [all …]
|
/hal_espressif-latest/components/efuse/esp32s2/ |
D | esp_efuse_rtc_table.c | 122 static int signed_bit_to_int(uint32_t number, int len) in signed_bit_to_int() argument 124 if (number >> (len - 1)) { in signed_bit_to_int() 126 number = -(number ^ (1 << (len - 1))); in signed_bit_to_int() 128 return number; in signed_bit_to_int()
|
/hal_espressif-latest/components/esp_event/ |
D | Kconfig | 7 … Enables collections of statistics in the event loop library such as the number of events posted 8 …to/recieved by an event loop, number of callbacks involved, number of events dropped to to a full … 9 … loop queue, run time of event handlers, and number of times/run time of each event handler.
|
/hal_espressif-latest/components/bt/host/bluedroid/api/ |
D | esp_hf_ag_api.c | 342 … esp_hf_current_call_mpty_type_t mpty, char *number, esp_hf_call_addr_type_t type) in esp_hf_ag_clcc_response() argument 362 arg.clcc_rep.number = number; //deep_copy in esp_hf_ag_clcc_response() 371 esp_err_t esp_hf_ag_cnum_response(esp_bd_addr_t remote_addr, char *number, int number_type, esp_hf_… in esp_hf_ag_cnum_response() argument 376 if (number == NULL || number_type < 128 || number_type > 175) { in esp_hf_ag_cnum_response() 387 arg.cnum_rep.number = number; //deep_copy in esp_hf_ag_cnum_response() 419 char *number, esp_hf_call_addr_type_t call_addr_type) in esp_hf_ag_answer_call() argument 436 arg.phone.number = number; //deep_copy in esp_hf_ag_answer_call() 447 char *number, esp_hf_call_addr_type_t call_addr_type) in esp_hf_ag_reject_call() argument 464 arg.phone.number = number; //deep_copy in esp_hf_ag_reject_call() 475 char *number, esp_hf_call_addr_type_t call_addr_type) in esp_hf_ag_end_call() argument [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/ |
D | esp_hf_client_api.h | 198 const char *number; /*!< phone number string of call */ member 205 const char *number; /*!< phone number string of waiting call */ member 216 char *number; /*!< phone number(optional) */ member 239 const char *number; /*!< phone number string */ member 254 …const char *number; /*!< phone number corresponding to the last voice tag in … member 471 esp_err_t esp_hf_client_dial(const char *number);
|
D | esp_hf_ag_api.h | 551 … esp_hf_current_call_mpty_type_t mpty, char *number, esp_hf_call_addr_type_t type); 571 esp_err_t esp_hf_ag_cnum_response(esp_bd_addr_t remote_addr, char *number, int number_type, esp_hf_… 609 char *number, esp_hf_call_addr_type_t call_addr_type); 631 char *number, esp_hf_call_addr_type_t call_addr_type); 656 char *number, esp_hf_call_addr_type_t call_addr_type); 678 char *number, esp_hf_call_addr_type_t call_addr_type);
|
/hal_espressif-latest/components/bt/common/ |
D | Kconfig.in | 2 int "Maximum number of Bluetooth alarms" 5 This option decides the maximum number of alarms which
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/hf_client/ |
D | btc_hf_client.c | 416 static bt_status_t btc_hf_client_dial(const char *number) in btc_hf_client_dial() argument 420 if (strlen(number) != 0) in btc_hf_client_dial() 422 …lientSendAT(hf_client_local_param.btc_hf_client_cb.handle, BTA_HF_CLIENT_AT_CMD_ATD, 0, 0, number); in btc_hf_client_dial() 1001 param.clip.number = p_data->number.number; in btc_hf_client_cb_handler() 1007 param.binp.number = p_data->number.number; in btc_hf_client_cb_handler() 1013 param.ccwa.number = p_data->number.number; in btc_hf_client_cb_handler() 1033 param.clcc.number = p_data->clcc.number_present ? p_data->clcc.number : NULL; in btc_hf_client_cb_handler() 1039 param.cnum.number = p_data->cnum.number; in btc_hf_client_cb_handler() 1148 btc_hf_client_dial(arg->dial.number); in btc_hf_client_call_handler()
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/hf_client/include/ |
D | bta_hf_client_int.h | 268 extern void bta_hf_client_send_at_atd(char *number, UINT32 memory); 302 extern void bta_hf_client_clip(char *number); 303 extern void bta_hf_client_ccwa(char *number); 305 …rn void bta_hf_client_clcc(UINT32 idx, BOOLEAN incoming, UINT8 status, BOOLEAN mpty, char *number); 306 extern void bta_hf_client_cnum(char *number, UINT16 service); 307 extern void bta_hf_client_binp(char *number);
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_hf_client_api.h | 207 char number[BTA_HF_CLIENT_NUMBER_LEN + 1]; member 223 char number[BTA_HF_CLIENT_NUMBER_LEN + 1]; member 229 char number[BTA_HF_CLIENT_NUMBER_LEN + 1]; member 257 tBTA_HF_CLIENT_NUMBER number; member
|
/hal_espressif-latest/components/bt/host/nimble/ |
D | Kconfig.in | 66 int "Maximum number of concurrent connections" 75 Defines maximum number of concurrent BLE connections. For ESP32, user 82 int "Maximum number of bonds to save across reboots" 86 Defines maximum number of bonds to save for peer security and our security 89 int "Maximum number of CCC descriptors to save across reboots" 93 Defines maximum number of CCC descriptors to save 96 int "Maximum number of connection oriented channels" 101 …Defines maximum number of BLE Connection Oriented Channels. When set to (0), BLE COC is not compil… 328 The number of ACL data buffers allocated for host. 371 int "Maximum number of GATT client procedures" [all …]
|
/hal_espressif-latest/components/esp_hw_support/port/esp32s2/ |
D | Kconfig.mac | 5 Configure the number of universally administered (by IEEE) MAC addresses. 8 …If the number of universal MAC addresses is Two, all interfaces (WiFi station, WiFi softap) receiv… 10 to the final octet of the base MAC address. If the number of universal MAC addresses is one,
|
/hal_espressif-latest/components/esp_wifi/ |
D | Kconfig | 9 int "Max number of WiFi static RX buffers" 15 Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM. 20 … A higher number may allow higher throughput but increases memory use. If ESP_WIFI_AMPDU_RX_ENABLED 25 int "Max number of WiFi dynamic RX buffers" 30 … Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated 39 … process them. In these cases we may run out of memory if RX buffer number is unlimited (0). 41 … If a dynamic RX buffer limit is set, it should be at least the number of static RX buffers. 73 int "Max number of WiFi static TX buffers" 78 Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM. 88 int "Max number of WiFi cache TX buffers" [all …]
|
/hal_espressif-latest/components/esp_hw_support/port/esp32s3/ |
D | Kconfig.mac | 5 Configure the number of universally administered (by IEEE) MAC addresses. 8 … If the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap, 11 … If the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)
|
/hal_espressif-latest/components/esp_hw_support/port/esp32/ |
D | Kconfig.mac | 5 Configure the number of universally administered (by IEEE) MAC addresses. 8 … If the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap, 11 … If the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/ |
D | btc_hf_ag.h | 145 char *number; member 152 char *number; member 182 char *number; member
|
/hal_espressif-latest/zephyr/scripts/pinctrl/ |
D | README.md | 34 - **`{peripheral}`** (required): concatenation of the peripheral name and its instance number (resp… 38 …__. Integer elements represent a pin number (e.g., `1` means `GPIO1`) while a 2-sized array repres… 45 - If the `gpio` field is formed by either only one pin number or only one pin number range, in any …
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/ |
D | Kconfig.mac | 5 Configure the number of universally administered (by IEEE) MAC addresses. 10 … If the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap, 14 … If the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c2/ |
D | Kconfig.mac | 5 Configure the number of universally administered (by IEEE) MAC addresses. 10 … If the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap, 14 … If the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/ |
D | Kconfig.mac | 5 Configure the number of universally administered (by IEEE) MAC addresses. 10 … If the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap, 14 … If the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)
|
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
D | burn-bit-cmd.rst | 6 The ``espefuse.py burn_bit`` command burns bits in efuse blocks by bit number. This is useful when … 11 - ``bit number`` - Bit number in the efuse block [0..BLK_LEN-1] (list of numbers, like 10 15 18 17 …
|
/hal_espressif-latest/components/bt/esp_ble_mesh/api/core/include/ |
D | esp_ble_mesh_provisioning_api.h | 90 esp_err_t esp_ble_mesh_node_input_number(uint32_t number); 161 esp_err_t esp_ble_mesh_provisioner_input_number(uint32_t number, uint8_t link_idx);
|
/hal_espressif-latest/components/bt/esp_ble_mesh/ |
D | Kconfig.in | 182 int "Maximum number of unprovisioned devices that can be added to device queue" 192 int "Maximum number of devices that can be provisioned by Provisioner" 197 This value indicates the maximum number of unprovisioned devices which can be 201 up to 32766 unprovisioned devices, here we limit the maximum number to 100 207 int "Maximum number of PB-ADV running at the same time by Provisioner" 219 int "Maximum number of PB-GATT running at the same time by Provisioner" 230 int "Maximum number of mesh subnets that can be created by Provisioner" 235 … Indeed, this value decides the number of network keys which can be added by a Provisioner. 238 int "Maximum number of application keys that can be owned by Provisioner" 243 … Indeed, this value decides the number of the application keys which can be added by a Provisioner. [all …]
|
/hal_espressif-latest/components/wpa_supplicant/src/utils/ |
D | json.c | 396 curr_token->number = 1; in json_parse() 401 curr_token->number = 0; in json_parse() 430 token->number = num; in json_parse() 433 curr_token->number = num; in json_parse() 439 curr_token->number); in json_parse() 444 curr_token->number = num; in json_parse() 449 curr_token->number); in json_parse()
|