Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 307) sorted by relevance

12345678910>>...13

/hal_espressif-2.7.6/components/console/
Dcommands.c32 const char *command; member
96 if (!cmd || cmd->command == NULL) { in esp_console_cmd_register()
99 if (strchr(cmd->command, ' ') != NULL) { in esp_console_cmd_register()
102 item = (cmd_item_t *)find_command_by_name(cmd->command); in esp_console_cmd_register()
114 item->command = cmd->command; in esp_console_cmd_register()
157 if (strncmp(buf, it->command, len) == 0) { in esp_console_get_completion()
158 linenoiseAddCompletion(lc, it->command); in esp_console_get_completion()
168 if (strlen(it->command) == len && in esp_console_get_hint()
169 strncmp(buf, it->command, len) == 0) { in esp_console_get_hint()
184 if (strlen(it->command) == len && in find_command_by_name()
[all …]
/hal_espressif-2.7.6/examples/protocols/pppos_client/components/modem/src/
Desp_modem_dce_service.c89 char command[16]; in esp_modem_dce_set_flow_ctrl() local
90 int len = snprintf(command, sizeof(command), "AT+IFC=%d,%d\r", dte->flow_ctrl, flow_ctrl); in esp_modem_dce_set_flow_ctrl()
91 DCE_CHECK(len < sizeof(command), "command too long: %s", err, command); in esp_modem_dce_set_flow_ctrl()
93 …DCE_CHECK(dte->send_cmd(dte, command, MODEM_COMMAND_TIMEOUT_DEFAULT) == ESP_OK, "send command fail… in esp_modem_dce_set_flow_ctrl()
104 char command[64]; in esp_modem_dce_define_pdp_context() local
105 int len = snprintf(command, sizeof(command), "AT+CGDCONT=%d,\"%s\",\"%s\"\r", cid, type, apn); in esp_modem_dce_define_pdp_context()
106 DCE_CHECK(len < sizeof(command), "command too long: %s", err, command); in esp_modem_dce_define_pdp_context()
108 …DCE_CHECK(dte->send_cmd(dte, command, MODEM_COMMAND_TIMEOUT_DEFAULT) == ESP_OK, "send command fail… in esp_modem_dce_define_pdp_context()
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/hfp_hf/main/
Dapp_hf_msg_set.c352 .command = "con", in register_hfp_hf()
360 .command = "dis", in register_hfp_hf()
368 .command = "cona", in register_hfp_hf()
376 .command = "disa", in register_hfp_hf()
384 .command = "qop", in register_hfp_hf()
392 .command = "qc", in register_hfp_hf()
400 .command = "ac", in register_hfp_hf()
408 .command = "rc", in register_hfp_hf()
416 .command = "d", in register_hfp_hf()
424 .command = "rd", in register_hfp_hf()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/hci/
Dhci_layer.c50 BT_HDR *command; member
238 BT_HDR *command, in transmit_command() argument
250 stream = command->data + command->offset; in transmit_command()
254 wait_entry->command = command; in transmit_command()
259 command->event = MSG_STACK_TO_HC_HCI_CMD; in transmit_command()
261 BTTRC_DUMP_BUFFER(NULL, command->data + command->offset, command->len); in transmit_command()
268 static future_t *transmit_command_futured(BT_HDR *command) in transmit_command_futured() argument
275 uint8_t *stream = command->data + command->offset; in transmit_command_futured()
278 wait_entry->command = command; in transmit_command_futured()
282 command->event = MSG_STACK_TO_HC_HCI_CMD; in transmit_command_futured()
[all …]
/hal_espressif-2.7.6/docs/en/api-reference/system/
Dconsole.rst7 …ncludes handling of backspace and arrow keys, scrolling through command history, command auto-comp…
8 - Splitting of command line into arguments.
9 …`argtable3`_ library. This library includes APIs used for parsing GNU style command line arguments.
15command registration features, but use ``getopt`` or custom code for argument parsing, instead of …
20 …yping them, erasing symbols using 'backspace' key, navigating within the command using left/right …
24 …ape sequence when running :example:`system/console` example instead of a command prompt (e.g. ``es…
37command exceeds the width of the terminal, the command text is scrolled within the line to show th…
50 …This function must be called to release the command line buffer obtained from :cpp:func:`linenoise…
56 …kes completion callback. The callback should inspect the contents of the command typed so far and …
61 …ompletion callback to inform the library about possible completions of the currently typed command.
[all …]
/hal_espressif-2.7.6/tools/
Dgdb_panic_server.py193 command = buffer[1:-3] # ignore checksums
197 self.logger.debug('Got command: %s', command)
198 if command == '?':
201 elif command.startswith('Hg') or command.startswith('Hc'):
204 elif command == 'qfThreadInfo':
209 elif command == 'qC':
212 elif command == 'g':
215 elif command.startswith('m'):
217 addr, size = [int(v, 16) for v in command[1:].split(',')]
219 elif command.startswith('vKill') or command == 'k':
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/hfp_ag/main/
Dapp_hf_msg_set.c340 .command = "con", in register_hfp_ag()
348 .command = "dis", in register_hfp_ag()
356 .command = "cona", in register_hfp_ag()
364 .command = "disa", in register_hfp_ag()
374 .command = "ac", in register_hfp_ag()
382 .command = "rc", in register_hfp_ag()
390 .command = "d", in register_hfp_ag()
400 .command = "vron", in register_hfp_ag()
408 .command = "vroff", in register_hfp_ag()
419 .command = "vu", in register_hfp_ag()
[all …]
/hal_espressif-2.7.6/components/wpa_supplicant/test/
Dtest_dpp.c43 char command[1200] = {0}; variable
70 sprintf(command, "type=qrcode key=%s", key);
71 id = dpp_bootstrap_gen(dpp, command);
84 memset(command, 0, 1200);
85 sprintf(command, "%s%s%s", prefix, protocol_key, postfix);
87 hex_len = os_strlen(command);
92 else if (hexstr2bin(command, dpp_protocol_key_override,
/hal_espressif-2.7.6/components/spi_flash/
Dmemspi_host_driver.c34 uint32_t command,
94 .command = CMD_RDID, in memspi_host_read_id_hs()
119 .command = CMD_RDSR, in memspi_host_read_status_hs()
142 t.command = CMD_CHIP_ERASE; in memspi_host_erase_chip()
151 .command = CMD_SECTOR_ERASE, in memspi_host_erase_sector()
163 .command = CMD_LARGE_BLOCK_ERASE, in memspi_host_erase_block()
175 .command = CMD_PROGRAM_PAGE, in memspi_host_program_page()
187 .command = CMD_READ, in memspi_host_read()
200 .command = wp ? CMD_WRDI : CMD_WREN in memspi_host_set_write_protect()
/hal_espressif-2.7.6/tools/ldgen/
Doutput_commands.py64 command = None
67 command = '*%s' % (sections_string)
69 command = '*%s:%s' % (self.entity.archive, sections_string)
71 command = '*%s:%s.*%s' % (self.entity.archive, self.entity.obj, sections_string)
73 return command
/hal_espressif-2.7.6/examples/peripherals/i2c/i2c_tools/main/
DKconfig.projbuild4 bool "Store command history in flash"
8 command history. If this option is enabled, initalizes a FAT filesystem
9 and uses it to store command history.
/hal_espressif-2.7.6/examples/system/console/main/
DKconfig.projbuild4 bool "Store command history in flash"
8 command history. If this option is enabled, initalizes a FAT filesystem
9 and uses it to store command history.
/hal_espressif-2.7.6/docs/en/api-reference/protocols/
Desp_spi_slave_protocol.rst52 - Data: variable length, the direction is also determined by the command.
68 | Mode | command WN | address WN | dummy cycles | data WN |
83 Normally, which mode is used is determined is determined by the command sent by the master (See
89 The QPI mode is a special state of the SPI Slave. The master can send ENQPI command to put the
90 slave into the QPI mode state. In the QPI mode, the command is also sent in 4-bit, thus it's not
92 the QPI mode. To exit form the QPI mode, master can send EXQPI command.
100 The command name are in a master-oriented direction. For example, WRBUF means master writes
130 transactions in 2-bit or 4-bit mode, send the original command ORed by the corresponding command
131 mask below. For example, command 0xA1 means WRBUF in QIO mode.
156 termination command to the slave as a synchronization signal. The slave driver will update new
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/hci/include/hci/
Dhci_layer.h72 typedef void (*command_status_cb)(uint8_t status, BT_HDR *command, void *context);
83 BT_HDR *command,
89 future_t *(*transmit_command_futured)(BT_HDR *command);
/hal_espressif-2.7.6/examples/system/console/components/cmd_system/
Dcmd_system.c88 .command = "version", in register_version()
107 .command = "restart", in register_restart()
126 .command = "free", in register_free()
145 .command = "heap", in register_heap()
179 .command = "tasks", in register_tasks()
260 .command = "deep_sleep", in register_deep_sleep()
357 .command = "light_sleep", in register_light_sleep()
/hal_espressif-2.7.6/components/hal/
Dspi_flash_hal_common.inc72 uint32_t command,
86 * will go into a "continuous (XIP)" mode, where the command field will be skipped in the next
128 if (command >= 0x100) {
129 spi_flash_ll_set_command(dev, command, 16);
131 spi_flash_ll_set_command(dev, command, 8);
147 uint16_t command;
151 command = (uint8_t)trans->reserved;
154 command = trans->command;
161 … host->driver->configure_host_io_mode(host, command, trans->address_bitlen, dummy_bitlen, io_mode);
/hal_espressif-2.7.6/examples/system/console/
DREADME.md7 …iety of commands, and can act as a basis for applications that require a command-line interface (C…
21 * Enable/disable `Example Configuration > Store command history in flash` as necessary
39 Enter the `help` command get a full list of all available commands. The following is a sample sessi…
44 Use UP/DOWN arrows to navigate through command history.
45 Press TAB when typing command name to auto-complete.
82 Use UP/DOWN arrows to navigate through command history.
83 Press TAB when typing command name to auto-complete.
100 Use UP/DOWN arrows to navigate through command history.
101 Press TAB when typing command name to auto-complete.
115 Use UP/DOWN arrows to navigate through command history.
[all …]
/hal_espressif-2.7.6/components/mdns/
Dmdns_console.c109 .command = "mdns_query_a", in register_mdns_query_a()
167 .command = "mdns_query_aaaa", in register_mdns_query_aaaa()
229 .command = "mdns_query_srv", in register_mdns_query_srv()
291 .command = "mdns_query_txt", in register_mdns_query_txt()
357 .command = "mdns_query_ptr", in register_mdns_query_ptr()
425 .command = "mdns_query_ip", in register_mdns_query_ip()
494 .command = "mdns_query_svc", in register_mdns_query_svc()
540 .command = "mdns_init", in register_mdns_init()
559 .command = "mdns_free", in register_mdns_free()
597 .command = "mdns_set_hostname", in register_mdns_set_hostname()
[all …]
/hal_espressif-2.7.6/components/wpa_supplicant/src/esp_supplicant/
Desp_dpp.c354 char *command = (char *)evt->data; in esp_dpp_task() local
357 s_dpp_ctx.id = dpp_bootstrap_gen(s_dpp_ctx.dpp_global, command); in esp_dpp_task()
361 os_free(command); in esp_dpp_task()
517 char *command = os_zalloc(1200); in esp_supp_dpp_bootstrap_gen() local
520 if (!uri_chan_list || !command || params->num_chan >= 14 || params->num_chan == 0) { in esp_supp_dpp_bootstrap_gen()
522 if (command) { in esp_supp_dpp_bootstrap_gen()
523 os_free(command); in esp_supp_dpp_bootstrap_gen()
531 os_free(command); in esp_supp_dpp_bootstrap_gen()
543 os_free(command); in esp_supp_dpp_bootstrap_gen()
560 os_free(command); in esp_supp_dpp_bootstrap_gen()
[all …]
/hal_espressif-2.7.6/tools/windows/tool_setup/
Dcmdline_page.iss.inc4 { ------------------------------ Progress & log page for command line tools -----------------------…
66 { ------------------------------ The actual command line install page -----------------------------…
73 function DoCmdlineInstall(caption, description, command: String): Boolean;
109 Memo.Lines.Append('Running command: ' + command);
110 Handle := ProcStart(command, ExpandConstant('{tmp}'))
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_coex_test/main/
Dcoex_cmd.c120 .command = "restart", in register_coex_cmd()
130 .command = "mac", in register_coex_cmd()
144 .command = "run_tc", in register_coex_cmd()
160 .command = "env", in register_coex_cmd()
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/ble_mesh_console/main/
Dble_mesh_console_system.c53 .command = "restart", in register_restart()
72 .command = "free", in register_free()
175 .command = "make", in register_make()
/hal_espressif-2.7.6/examples/wifi/simple_sniffer/
DREADME.md27 - Check `Store command history in flash` if you want to save command history into flash (recommend).
61 The `sniffer` command support some important options as follow:
127 …, run command like `esp32 apptrace start file://sniffer-esp32.pcap 1 -1 20` (more information abou…
128 6. Run the example, start sniffer with command `sniffer` (you don't need to specify the filename, b…
129 7. Stop sniffer by entering command `sniffer --stop` in the example console.
130 8. Stop tracing by entering command `esp32 apptrace stop` in the telnet session.
140 - To protect the SD card, we recommand you to execute command `unmount sd` before you plug out your…
141command before or immediately after a new sniffer task started when you try this example with JTAG…
/hal_espressif-2.7.6/examples/peripherals/twai/twai_network/
DREADME.md83 I (3105) TWAI Master: Transmitted start command
87 I (5545) TWAI Master: Transmitted stop command
91 I (7095) TWAI Master: Transmitted start command
95 I (9535) TWAI Master: Transmitted stop command
99 I (11085) TWAI Master: Transmitted start command
103 I (13525) TWAI Master: Transmitted stop command
149 I (2116) TWAI Listen Only: Received master start command
153 I (4566) TWAI Listen Only: Received master stop command
158 I (6106) TWAI Listen Only: Received master start command
162 I (8556) TWAI Listen Only: Received master stop command
[all …]
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/
DREADME.md43 spp h; -- show command manual
57 - This command help table will print out in monitor whenever you type `spp h;` or if you input a co…
61 - The command you typed will not echo in monitor.
113 - The example will respond to user command through UART console. Please go to `console_uart.c` for…
115 - If you want to update the command table, please refer to `app_spp_msg_set.c`.
117 - If you want to update the command parse rules, please refer to `app_spp_msg_prs.c`.

12345678910>>...13