Home
last modified time | relevance | path

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

12345

/samples/subsys/shell/shell_module/
A Dtest_shell.yml1 - command: "kernel cycles"
3 - command: "kernel version"
A DREADME.rst14 ``version`` is a static command that prints the kernel version.
30 Set a Login command
94 hexdump : Hexdump params command.
95 params : Print params command.
96 ping : Ping command.
97 board : Show board name command.
99 dynamic - Demonstrate dynamic command usage.
101 add : Add a new dynamic command.
102 Example usage: [ dynamic add test ] will add a dynamic command
107 execute : Execute a command.
[all …]
/samples/arch/mpu/mpu_test/
A Dtest_shell.yml1 - command: "mpu mtest 1"
3 - command: "mpu mtest 2"
/samples/application_development/code_relocation_nocopy/boards/
A Dnrf54h20dk_nrf54h20_cpuapp.overlay6 read-command = <0xEC13>;
7 command-length = "INSTR_2_BYTE";
/samples/drivers/smbus/
A 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 …]
/samples/net/secure_mqtt_sensor_actuator/src/
A Ddevice.h32 const char *command; member
54 void device_command_handler(uint8_t *command);
A Ddevice.c44 void device_command_handler(uint8_t *command) in device_command_handler() argument
47 if (strcmp(command, device_commands[i].command) == 0) { in device_command_handler()
48 LOG_INF("Executing device command: %s", device_commands[i].command); in device_command_handler()
52 LOG_ERR("Unknown command: %s", command); in device_command_handler()
/samples/subsys/testsuite/pytest/shell/
A Dtestcase.yaml25 - command: "kernel cycles"
27 - command: "kernel version"
29 - command: "kernel sleep 100"
A DREADME.rst15 ``help`` command, second one verifies if application is able to return
42 INFO: send "help" command
67 DEBUG: #: retval :Print return value of most recent command
73 INFO: send "kernel version" command
/samples/drivers/flash_shell/
A Dtest_shell.yml1 - command: "flash page_info 0"
/samples/subsys/shell/devmem_load/
A DREADME.md1 # Zephyr devmem load command
2 This module add a `devmem load` command that allows data to be loaded into device memory.
3 The `devmem load` command is supported by every transport the shell can run on.
5 After using a command in the Zephyr shell, the device reads all transferred data and writes to an a…
9 Note: when using the devmem load command over UART it is recommended to use interrupts whenever pos…
30 The `devmem load` command can now be used (`devmem load [option] [address]`):
51 Currently, the `devmem load` command supports the following argument:
/samples/drivers/mspi/mspi_flash/boards/
A Dapollo3p_evb.overlay45 read-command = <0xEB>;
46 write-command = <0x38>;
47 command-length = "INSTR_1_BYTE";
66 read-command = <0x0B>;
67 write-command = <0x02>;
68 command-length = "INSTR_1_BYTE";
/samples/subsys/modbus/tcp_server/
A DREADME.rst40 On the client side, PC or laptop, the following command connects PyModbus
48 For example, to set LED0 on use FC01 command (write_coil).
64 To set LED0 off but LED1 and LED2 on use FC15 command (write_coils).
70 To read LED0, LED1, LED2 state FC05 command (read_coils) can be used.
92 To write single holding registers use FC06 command (write_register),
98 or FC16 command (write_registers).
104 To read holding registers use FC03 command (read_holding_registers).
/samples/drivers/memc/boards/
A Dapollo3p_evb.overlay44 read-command = <0xEB>;
45 write-command = <0x38>;
46 command-length = "INSTR_1_BYTE";
/samples/drivers/mspi/mspi_async/boards/
A Dapollo3p_evb.overlay44 read-command = <0xEB>;
45 write-command = <0x38>;
46 command-length = "INSTR_1_BYTE";
/samples/subsys/modbus/tcp_gateway/
A DREADME.rst44 On the client side, PC or laptop, the following command connects PyModbus
52 For example, to set LED0 on use FC01 command (write_coil).
68 To set LED0 off but LED1 and LED2 on use FC15 command (write_coils).
74 To read LED0, LED1, LED2 state FC05 command (read_coils) can be used.
96 To write single holding registers use FC06 command (write_register),
102 or FC16 command (write_registers).
108 To read holding registers use FC03 command (read_holding_registers).
/samples/subsys/usb/legacy/console/
A DREADME.rst32 from the sample, use a command similar to :command:`minicom -D /dev/ttyACM0`.
44 You may need to stop :program:`modemmanager` via :command:`sudo stop modemmanager`, if it is
/samples/subsys/usb/midi/src/
A Dmain.c30 uint8_t command = evt->value ? UMP_MIDI_NOTE_ON : UMP_MIDI_NOTE_OFF; in key_press() local
35 struct midi_ump ump = UMP_MIDI1_CHANNEL_VOICE(0, command, channel, in key_press()
/samples/posix/env/
A DREADME.rst41 The shell command below shows how to create a new environment variable or update the value
58 The shell command below may be used to display the value associated with one environment variable.
65 The shell command below may be used to display all environment variables and their associated
78 The shell command below may be used to unset environment variables.
/samples/subsys/profiling/perf/
A DREADME.rst25 * After the sample has started, enter the shell command:
31 This command will start a timer for *duration* milliseconds at *frequency* Hz.
36 * Print the samples captured by perf in the terminal with the shell command:
/samples/tfm_integration/psa_crypto/
A DKconfig17 bool "The 'psa' shell command"
20 Enabling this option will make the 'psa' shell command available.
/samples/boards/nordic/spis_wakeup/
A DCMakeLists.txt13 " Add --sysbuild argument to west build command to prepare all the images.")
/samples/subsys/modbus/rtu_server/
A DREADME.rst74 On the client side, PC or laptop, the following command connects PyModbus
84 For example, to set LED0 on use FC01 command (write_coil).
99 To set LED0 off but LED1 and LED2 on use FC15 command (write_coils).
105 To read LED0, LED1, LED2 state FC05 command (read_coils) can be used.
127 To write single holding registers use FC06 command (write_register),
133 or FC16 command (write_registers).
139 To read holding registers use FC03 command (read_holding_registers).
/samples/subsys/usb/console/
A DREADME.rst32 from the sample, use a command similar to :command:`minicom -D /dev/ttyACM1`.
/samples/boards/nxp/mimxrt595_evk/system_off/
A DREADME.rst89 executable for your host OS, and use the command-line steps below to
109 4. This command confirms the current settings of BOOT_CFG1 fuses:
112 5. This command programs BOOT_CFG1 to enable the flash reset pin using
116 6. This command confirms the programmed fuses in BOOT_CFG1:
128 Inject command 'efuse-read-once'
134 Inject command 'efuse-program-once'
135 Successful generic response to command 'efuse-program-once'
139 Inject command 'efuse-read-once'

Completed in 42 milliseconds

12345