Home
last modified time | relevance | path

Searched full:command (Results 1 – 25 of 1434) sorted by relevance

12345678910>>...58

/Zephyr-Core-3.5.0/samples/modules/tflite-micro/magic_wand/renode/
Dlitex-vexriscv-tflite.robot7 ... Execute Command include @${CURDIR}/LiteX_I2C_Zephyr.cs
55 Execute Command using sysbus
57 Execute Command mach create
58 Execute Command machine LoadPlatformDescription @${CURDIR}/litex-vexriscv-tflite.repl
60 Execute Command showAnalyzer uart Antmicro.Renode.Analyzers.LoggingUartAnalyzer
62 …Execute Command sysbus LoadELF @${CURDIR}/../tensorflow/tensorflow/lite/micro/tools/make…
73 Execute Command using sysbus
75 Execute Command mach create
76 Execute Command machine LoadPlatformDescription @${CURDIR}/litex-vexriscv-tflite.repl
78 Execute Command showAnalyzer uart Antmicro.Renode.Analyzers.LoggingUartAnalyzer
[all …]
/Zephyr-Core-3.5.0/drivers/display/
Dssd1306_regs.h15 /* The next byte will contain a command */
24 * Fundamental Command Table
26 #define SSD1306_SET_CONTRAST_CTRL 0x81 /* double byte command */
38 * Addressing Setting Command Table
46 #define SSD1306_SET_MEM_ADDRESSING_MODE 0x20 /* double byte command */
51 #define SSD1306_SET_COLUMN_ADDRESS 0x21 /* triple byte command */
53 #define SSD1306_SET_PAGE_ADDRESS 0x22 /* triple byte command */
60 * Hardware Configuration Command Table
68 #define SSD1306_SET_MULTIPLEX_RATIO 0xa8 /* double byte command */
73 #define SSD1306_SET_DISPLAY_OFFSET 0xd3 /* double byte command */
[all …]
/Zephyr-Core-3.5.0/include/zephyr/mgmt/ec_host_cmd/
Dec_host_cmd.h11 * @brief EC Host Command Interface
12 * @defgroup ec_host_cmd_interface EC Host Command Interface
24 * @brief Host command response codes (16-bit).
27 /** Host command was successful. */
29 /** The specified command id is not recognized or supported. */
35 /** Host command is not permitted. */
39 /** Host command id version unsupported. */
43 /** A host command is currently being processed. */
74 EC_HOST_CMD_DEBUG_OFF, /* No Host Command debug output */
76 EC_HOST_CMD_DEBUG_EVERY, /* Print every command */
[all …]
Dbackend.h9 * @brief Public APIs for Host Command backends that respond to host commands
33 * @brief EC Host Command Interface
34 * @defgroup ec_host_cmd_interface EC Host Command Interface
40 * @brief Context for host command backend and handler to pass rx data.
54 * @brief Context for host command backend and handler to pass tx data
71 * @brief Initialize a host command backend
73 * This routine initializes a host command backend. It includes initialization
109 * @brief Get the eSPI Host Command backend pointer
112 * the Host Command communication.
121 * @brief Get the SHI NPCX Host Command backend pointer
[all …]
/Zephyr-Core-3.5.0/doc/services/shell/
Dindex.rst13 This module allows you to create and handle a shell with a user-defined command
21 * Smart command completion with the :kbd:`Tab` key.
22 * Built-in commands: :command:`clear`, :command:`shell`, :command:`colors`,
23 :command:`echo`, :command:`history` and :command:`resize`.
43 The module can be connected to any transport for command input and output.
83 * Root command (level 0): Gathered and alphabetically sorted in a dedicated
96 * :c:macro:`SHELL_CMD_REGISTER` - Create root command. All root commands must
99 set) create root command. All root commands must have different name.
100 * :c:macro:`SHELL_CMD_ARG_REGISTER` - Create root command with arguments.
103 is set) create root command with arguments. All root commands must have
[all …]
/Zephyr-Core-3.5.0/subsys/mgmt/ec_host_cmd/
DKconfig1 # Host command handler functionality
6 menu "Host command handler subsystem"
9 bool "Support Embedded Controller host command handler subsystem"
11 Enable host command processing for embedded controllers on notebook
21 int "Stack size for the EC host command handler thread"
32 Buffer size in bytes for TX buffer defined by the host command handler.
45 Buffer size in bytes for TX buffer defined by the host command handler.
51 int "Priority of host command task"
56 process the command on time and the AP will abort the waiting for response and be unable
64 Initialization priority for Host Command. It must be higher than the initialization
[all …]
/Zephyr-Core-3.5.0/cmake/bintools/
Dbintools_template.cmake18 # - <tool>_flag : Flags that must always be used with this command
30 # Commands will default echo a message if called, but no command has been defined.
31 # This is done, so that unexpected calls to non-implemented command can be easily detected.
32 # To disable the message, simply silence the command with:
33 # set_property(TARGET bintools PROPERTY <command>_command ${CMAKE_COMMAND} -E echo "")
40 # For example, to call a custom script for elfconvert command, one can specify:
52 # Command:
53 # - memusage : Name of command to execute
54 # Note: For gcc compilers this command is not used,
56 # memusage_flag : Flags that must always be applied when calling memusage command
[all …]
/Zephyr-Core-3.5.0/drivers/modem/
Dmodem_cmd_handler.h2 * @brief Modem command handler header file.
4 * Text-based command handler implementation for modem context driver.
129 * @param data: command handler data reference
138 * @param data: command handler data reference
162 * @brief send AT command to interface with behavior defined by flags
169 * @param handler: command handler to use
174 * @param timeout: timeout of command
175 * @param flags: flags which influence behavior of command sending
186 * @brief send AT command to interface w/o locking TX
189 * @param handler: command handler to use
[all …]
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/
Dhci.h23 /** Allocate a HCI command buffer.
25 * This function allocates a new buffer for a HCI command. It is given
30 * @param opcode Command OpCode.
31 * @param param_len Length of command parameters.
37 /** Send a HCI command asynchronously.
39 * This function is used for sending a HCI command asynchronously. It can
41 * if the command has no parameters a NULL can be passed instead. The
42 * sending of the command will happen asynchronously, i.e. upon successful
46 * If synchronous behavior, and retrieval of the Command Complete parameters
49 * @param opcode Command OpCode.
[all …]
Dhci_raw.h74 /** Helper macro to define a command extension
76 * @param _op Opcode of the command.
77 * @param _min_len Minimal length of the command.
88 /** Opcode of the command */
91 /** Minimal length of the command */
96 * Handler function to be called when a command is intercepted.
98 * @param buf Buffer containing the command.
100 * @return HCI Status code or BT_HCI_ERR_EXT_HANDLED if command has
102 * BT_HCI_ERR_SUCCESS which just indicates that the command can be
108 /** @brief Register Bluetooth RAW command extension table
[all …]
/Zephyr-Core-3.5.0/doc/services/device_mgmt/
Dec_host_cmd.rst3 EC Host Command
8 The host command protocol defines the interface for a host, or application processor, to
9 communicate with a target embedded controller (EC). The EC Host command subsystem implements the
10 target side of the protocol, generating responses to commands sent by the host. The host command
16 The Host Command subsystem contains a few components:
20 * Command handler
25 The general handler validates data from the backend e.g. check sizes, checksum, etc. If the command
26 is valid and the user has provided a handler for a received command id, the command handler is
40 communication. The main issues are unknown command size sent by the host (the SPI transaction
44 can be changed in the future once the SPI API is extended to host command needs. Please check `the
[all …]
/Zephyr-Core-3.5.0/tests/bluetooth/host/ecc/bt_pub_key_gen/src/
Dtest_suite_invalid_inputs.c39 * - "LE Read Local P-256 Public Key" command is supported
40 * - "LE Generate DH Key" command is supported
41 * - "ECC Debug Keys" command is supported
56 /* Set "LE Read Local P-256 Public Key" command support bit */ in ZTEST()
58 /* Set "LE Generate DH Key" command support bit */ in ZTEST()
60 /* Set "ECC Debug Keys" command support bit */ in ZTEST()
67 * Test public key generation isn't supported if "LE Read Local P-256 Public Key" command
71 * - "LE Read Local P-256 Public Key" command isn't supported
72 * - "LE Generate DH Key" command is supported
82 /* Clear "LE Read Local P-256 Public Key" command support bit */ in ZTEST()
[all …]
Dmain.c47 * - "LE Read Local P-256 Public Key" command is supported
48 * - "LE Generate DH Key" command is supported
49 * - "ECC Debug Keys" command is supported
65 /* Set "LE Read Local P-256 Public Key" command support bit */ in ZTEST()
67 /* Set "LE Generate DH Key" command support bit */ in ZTEST()
69 /* Set "ECC Debug Keys" command support bit */ in ZTEST()
94 * - "LE Read Local P-256 Public Key" command is supported
95 * - "LE Generate DH Key" command is supported
109 /* Set "LE Read Local P-256 Public Key" command support bit */ in ZTEST()
111 /* Set "LE Generate DH Key" command support bit */ in ZTEST()
[all …]
/Zephyr-Core-3.5.0/cmake/util/
Dexecute_process.cmake3 # Parameter names identical to the execute_process() CMake command, and
4 # "ARGS" for the process command-line arguments.
6 # when invoking the COMMAND. Example:
10 if(NOT DEFINED COMMAND)
11 message(FATAL_ERROR "No COMMAND argument supplied")
33 COMMAND ${COMMAND}
/Zephyr-Core-3.5.0/scripts/pylib/pytest-twister-harness/tests/device/
Dhardware_adapter_test.py42 assert isinstance(device.command, list)
43 …assert device.command == ['west', 'flash', '--skip-rebuild', '--build-dir', 'build', '--runner', '…
51 assert isinstance(device.command, list)
52 assert device.command == [
62 assert isinstance(device.command, list)
63 assert device.command == [
74 assert isinstance(device.command, list)
75 assert device.command == [
87 assert isinstance(device.command, list)
88 assert device.command == [
[all …]
/Zephyr-Core-3.5.0/include/zephyr/shell/
Dshell.h51 * case. If command rely on unformatted argument then this flag shall be used
52 * in place of number of optional arguments in command definition to indicate
53 * that only mandatory arguments shall be parsed and remaining command string is
79 * @brief Shell dynamic command descriptor.
93 * @brief Shell command descriptor.
129 * @brief Shell command handler prototype.
135 * @retval 0 Successful command execution.
136 * @retval 1 Help printed and command not executed.
138 * @retval -ENOEXEC Command not executed.
144 * @brief Shell dictionary command handler prototype.
[all …]
/Zephyr-Core-3.5.0/subsys/shell/
DKconfig60 int "Shell command buffer size"
64 Maximum command size in bytes. One byte is reserved for the string
86 int "Maximum arguments in shell command"
90 Maximum number of arguments that can build a command.
114 printed on the terminal and passed to the command handler.
177 Shell parses command to find '-h' or '--help' string. If the shell
179 for a command.
213 bool "Resize command"
219 characters. Each time terminal screen width is changed resize command
221 The resize command can be turned off to save code memory (~0,5k).
[all …]
/Zephyr-Core-3.5.0/subsys/mgmt/mcumgr/grp/os_mgmt/
DKconfig26 int "Delay before executing reset command (ms)"
30 When a reset command is received, the system waits this many milliseconds
40 command has been issued via an MCUmgr command. With this option
41 disabled, modules will reboot when the command is received without
43 application will be notified that a reset command has been received
50 bool "Support for taskstat command"
101 The length of the string that is sent in response to taskstat command,
123 Enabling this option adds stack information into "taskstat" command
134 bool "Support for echo command"
139 bool "MCUMGR Parameters retrieval command"
[all …]
/Zephyr-Core-3.5.0/scripts/west_commands/runners/
Dblackmagicprobe.py115 # separators for the 'load' command we execute in bmp_flash().
152 def bmp_flash(self, command, **kwargs): argument
155 command = (self.gdb +
166 self.check_call(command)
168 def check_call_ignore_sigint(self, command): argument
171 self.check_call(command)
175 def bmp_attach(self, command, **kwargs): argument
177 command = (self.gdb +
185 command = (self.gdb +
193 self.check_call_ignore_sigint(command)
[all …]
/Zephyr-Core-3.5.0/samples/subsys/shell/shell_module/src/
Ddynamic_cmd.c38 shell_error(sh, "command limit reached"); in cmd_dynamic_add()
45 shell_error(sh, "too long command"); in cmd_dynamic_add()
52 "bad command name - please use only" in cmd_dynamic_add()
60 shell_error(sh, "duplicated command"); in cmd_dynamic_add()
70 shell_print(sh, "command added successfully"); in cmd_dynamic_add()
83 shell_print(sh, "dynamic command: %s", argv[1]); in cmd_dynamic_execute()
111 shell_print(sh, "command removed successfully"); in cmd_dynamic_remove()
115 shell_error(sh, "did not find command: %s", argv[1]); in cmd_dynamic_remove()
131 shell_print(sh, "Dynamic command list:"); in cmd_dynamic_show()
140 /* dynamic command creation */
[all …]
/Zephyr-Core-3.5.0/drivers/sdhc/
Dintel_emmc_host.h10 /* Bit map for command Register */
106 /* Event/command status */
191 volatile uint16_t cmd; /**< Command */
243 volatile uint32_t cq_ver; /**< Command Queue Version */
244 volatile uint32_t cq_cap; /**< Command Queue Capabilities */
245 volatile uint32_t cq_cfg; /**< Command Queue Configuration */
246 volatile uint32_t cq_ctrl; /**< Command Queue Control */
247 volatile uint32_t cq_intr_stat; /**< Command Queue Interrupt Status */
248 volatile uint32_t cq_intr_stat_en; /**< Command Queue Interrupt Status Enable */
249 volatile uint32_t cq_intr_sig_en; /**< Command Queue Interrupt Signal Enable */
[all …]
/Zephyr-Core-3.5.0/doc/connectivity/bluetooth/
Drfcomm-pics.rst37 TSPC_RFCOMM_1_9 True Respond to and send MSC Command
39 TSPC_RFCOMM_1_11 True Respond to Test Command
40 TSPC_RFCOMM_1_12 False Send Test Command
42 TSPC_RFCOMM_1_14 True Respond to RLS Command
43 TSPC_RFCOMM_1_15 False Send RLS Command
44 TSPC_RFCOMM_1_16 True Respond to PN Command
45 TSPC_RFCOMM_1_17 True (*) Send PN Command
46 TSPC_RFCOMM_1_18 True (*) Send Non-Supported Command (NSC)
48 TSPC_RFCOMM_1_19 True Respond to RPN Command
49 TSPC_RFCOMM_1_20 False Send RPN Command
[all …]
/Zephyr-Core-3.5.0/scripts/west_commands/
Drun_common.py81 def command_verb(command): argument
82 return "flash" if command.name == "flash" else "debug"
84 def add_parser_common(command, parser_adder=None, parser=None): argument
87 command.name,
89 help=command.help,
90 description=command.description)
119 Run "west {command.name} --context" for runner-specific options.
124 Use "west {command.name} --context -r RUNNER" to limit output to a
146 def do_run_common(command, user_args, user_runner_args, domains=None): argument
151 dump_context(command, user_args, user_runner_args)
[all …]
/Zephyr-Core-3.5.0/samples/drivers/smbus/
DREADME.rst45 quick :SMBus Quick command
47 scan :Scan SMBus peripheral devices command
49 byte_read :SMBus: byte read command
51 byte_write :SMBus: byte write command
53 byte_data_read :SMBus: byte data read command
55 byte_data_write :SMBus: byte data write command
57 word_data_read :SMBus: word data read command
59 word_data_write :SMBus: word data write command
61 block_write :SMBus: Block Write command
63 block_read :SMBus: Block Read command
[all …]
/Zephyr-Core-3.5.0/doc/develop/west/
Dindex.rst6 The Zephyr project includes a swiss-army knife command line tool named
15 Like ``git`` and ``docker``, the top-level ``west`` command takes some common
16 options, a sub-command to run, and then options and arguments for that
17 sub-command::
19 west [common-opts] <command> [opts] <args>
23 python3 -m west [common-opts] <command> [opts] <args>
26 for available west commands, and ``west <command> -h`` for detailed help on
27 each command.

12345678910>>...58