Home
last modified time | relevance | path

Searched refs:opts (Results 1 – 16 of 16) sorted by relevance

/Zephyr-latest/scripts/west_commands/runners/
Dsilabs_commander.py36 for opts in [shlex.split(opt) for opt in tool_opt]:
37 self.tool_opt += opts
84 opts = ['--device', self.device]
86 opts.append('--masserase')
88 opts.extend(['--serialno', self.dev_id])
90 opts.extend(['--speed', self.speed])
125 args = [self.commander, 'flash'] + opts + self.tool_opt + flash_args
Dezflashcli.py26 for opts in [shlex.split(opt) for opt in tool_opt]:
27 self.tool_opt += opts
Dstm32cubeprogrammer.py68 for opts in [shlex.split(opt) for opt in tool_opt]:
69 self._tool_opt += opts
Dlinkserver.py55 for opts in [shlex.split(opt) for opt in tool_opt]:
56 self.tool_opt += opts
Djlink.py87 for opts in [shlex.split(opt) for opt in tool_opt]:
88 self.tool_opt += opts
Dnrf_common.py97 for opts in [shlex.split(opt) for opt in tool_opt]:
98 self.tool_opt += opts
/Zephyr-latest/scripts/west_commands/completion/
Dwest-completion.zsh118 local -a opts=(
125 _arguments -S $opts \
130 local -a opts=(
141 _arguments -S $opts \
146 local -a opts=(
152 _arguments -S $opts \
157 local -a opts=(
165 _arguments -S $opts
169 local -a opts=(
173 _arguments -S $opts \
[all …]
/Zephyr-latest/drivers/spi/
Dspi_shell.c102 char *opts = argv[CONF_ARGV_SETTINGS]; in cmd_spi_conf() local
105 while (*opts != '\0') { in cmd_spi_conf()
106 switch (*opts) { in cmd_spi_conf()
121 shell_error(ctx, "invalid setting %c", *opts); in cmd_spi_conf()
123 opts++; in cmd_spi_conf()
/Zephyr-latest/tests/bluetooth/tester/src/audio/
Dbtp_hap.c43 const uint16_t opts = sys_le16_to_cpu(cp->opts); in ha_init() local
44 const bool presets_sync = (opts & BTP_HAP_HA_OPT_PRESETS_SYNC) > 0; in ha_init()
45 const bool presets_independent = (opts & BTP_HAP_HA_OPT_PRESETS_INDEPENDENT) > 0; in ha_init()
46 const bool presets_writable = (opts & BTP_HAP_HA_OPT_PRESETS_WRITABLE) > 0; in ha_init()
47 const bool presets_dynamic = (opts & BTP_HAP_HA_OPT_PRESETS_DYNAMIC) > 0; in ha_init()
/Zephyr-latest/doc/develop/west/
Dindex.rst19 west [common-opts] <command> [opts] <args>
23 python3 -m west [common-opts] <command> [opts] <args>
/Zephyr-latest/subsys/canbus/isotp/
Disotp.c151 *data++ = rctx->opts.bs; in receive_send_fc()
152 *data++ = rctx->opts.stmin; in receive_send_fc()
227 if (rctx->opts.bs == 0) { in receive_alloc_buffer()
232 uint32_t len = MIN(rctx->length, rctx->opts.bs * (rctx->rx_addr.dl - 1)); in receive_alloc_buffer()
259 if (rctx->opts.bs != 0) { in receive_alloc_buffer()
290 if (rctx->opts.bs == 0 && in receive_state_machine()
299 if (rctx->opts.bs) { in receive_state_machine()
300 rctx->bs = rctx->opts.bs; in receive_state_machine()
545 if (rctx->opts.bs && !--rctx->bs) { in process_cf()
547 rctx->bs = rctx->opts.bs; in process_cf()
[all …]
/Zephyr-latest/include/zephyr/canbus/
Disotp.h250 const struct isotp_fc_opts *opts,
437 struct isotp_fc_opts opts; member
466 struct isotp_fc_opts opts; member
/Zephyr-latest/tests/bluetooth/tester/src/audio/btp/
Dbtp_hap.h24 uint16_t opts; member
/Zephyr-latest/drivers/serial/
Duart_native_tty.c440 static struct args_struct_t opts[] = { in native_tty_add_serial_options() local
443 native_add_command_line_opts(opts); in native_tty_add_serial_options()
/Zephyr-latest/tests/subsys/canbus/isotp/conformance/src/
Dmain.c323 const struct isotp_fc_opts *opts, bool tx) in prepare_fc_frame() argument
326 frame->data[1] = FC_PCI_BYTE_2(opts->bs); in prepare_fc_frame()
327 frame->data[2] = FC_PCI_BYTE_3(opts->stmin); in prepare_fc_frame()
/Zephyr-latest/cmake/emu/
Dqemu.cmake101 # application explicitly opts out with NO_QEMU_SERIAL_BT_SERVER.