/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/dfu/ |
D | dfu_srv_recovery.sh | 3 # SPDX-License-Identifier: Apache-2.0 11 # Second test pair: tests are executed with `recover` enabled. This means target will recover 18 dfu_cli_stop -flash_erase dfu_target_dfu_stop -flash_erase \ 19 -- -argstest recover=0 expected-phase=2 24 -- -argstest recover=1 expected-phase=3 29 -- -argstest recover=1 expected-phase=4 34 -- -argstest recover=1 expected-phase=6 39 dfu_cli_stop -flash_rm dfu_target_dfu_stop -flash_rm \ 40 -- -argstest recover=1 expected-phase=8 45 dfu_cli_stop -flash_erase dfu_target_dfu_stop -flash_erase \ [all …]
|
D | dfu_srv_recovery_verify_fail.sh | 3 # SPDX-License-Identifier: Apache-2.0 15 dfu_cli_stop -flash_erase dfu_target_dfu_stop -flash_erase \ 16 -- -argstest recover=0 expected-phase=5 20 dfu_cli_stop -flash_rm dfu_target_dfu_stop -flash_rm \ 21 -- -argstest recover=1 expected-phase=6 26 dfu_cli_stop -flash_erase dfu_target_dfu_stop -flash_erase \ 27 -- -argstest recover=0 expected-phase=5 31 dfu_cli_stop -flash_rm dfu_target_dfu_stop -flash_rm \ 32 -- -argstest recover=1 expected-phase=6
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | nrfjprog.py | 4 # SPDX-License-Identifier: Apache-2.0 18 '''Runner front-end for nrfjprog.''' 21 reset=True, tool_opt=None, force=False, recover=False, argument 25 tool_opt, force, recover) 34 def tool_opt_help(cls) -> str: 35 return 'Additional options for nrfjprog, e.g. "--clockspeed"' 43 recover=args.recover, qspi_ini=args.qspi_ini) 47 parser.add_argument('--qspiini', required=False, dest='qspi_ini', 51 snrs = self.check_output(['nrfjprog', '--ids']) 67 core_opt = ['--coprocessor', cores[op['core']]] \ [all …]
|
D | nrfutil.py | 3 # SPDX-License-Identifier: Apache-2.0 18 '''Runner front-end for nrfutil.''' 21 reset=True, tool_opt=None, force=False, recover=False, argument 25 tool_opt, force, recover) 37 def tool_opt_help(cls) -> str: 38 return 'Additional options for nrfutil, e.g. "--log-level"' 46 recover=args.recover, 52 parser.add_argument('--suit-manifest-starter', required=False, 59 cmd = ['nrfutil', '--json', 'device'] + args 67 # https://github.com/ndjson/ndjson-spec [all …]
|
D | nrf_common.py | 4 # SPDX-License-Identifier: Apache-2.0 76 '''Runner front-end base class for nrf tools.''' 79 reset=True, tool_opt=None, force=False, recover=False): argument 90 self.recover = bool(recover) 106 def dev_id_help(cls) -> str: 107 return '''Device identifier. Use it to select the J-Link Serial Number 113 parser.add_argument('--nrf-family', 118 parser.add_argument('--softreset', required=False, 121 parser.add_argument('--snr', required=False, dest='dev_id', 122 help='obsolete synonym for -i/--dev-id') [all …]
|
/Zephyr-latest/scripts/west_commands/tests/ |
D | test_nrf.py | 4 # SPDX-License-Identifier: Apache-2.0 27 TEST_DEF_SNR = 'test-default-serial-number' # for mocking user input 28 TEST_OVR_SNR = 'test-override-serial-number' 30 TEST_TOOL_OPT = '--ip 192.168.1.10' 63 # Run a recover command first if True 64 recover: bool 66 # Use --reset instead of --pinreset if True 69 # --snr TEST_OVR_SNR if True, --snr TEST_DEF_SNR if False 72 # --chiperase if True, 73 # --sectorerase if False (or --sectoranduicrerase on nRF52) [all …]
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | blob_srv.rst | 28 .. code-block:: C 80 will attempt to recover the transfer. When the Bluetooth Mesh subsystem is started (for instance by 82 the :c:member:`recover <bt_mesh_blob_srv_cb.recover>` callback if there is any. In the recover 83 callback, the user must provide a BLOB stream to use for the rest of the transfer. If the recover 85 If no recover callback is implemented, transfers are always abandoned after a reboot.
|
/Zephyr-latest/doc/build/flashing/ |
D | configuration.rst | 1 .. _flashing-soc-board-config: 7 :ref:`west flash<west-flashing>`) which allows for customising how commands are used when 9 configuring when commands are ran for groups of board targets. As an example: a multi-core SoC 10 might want to only allow the ``--erase`` argument to be used once for all of the cores in the SoC 28 ``--reset`` followed by a list which specifies the settings for each of these commands (these 31 runners, otherwise must contain each runner that it applies to using the runner-specific name. 41 An example flashing configuration for a ``soc.yml`` is shown below in which the ``--recover`` 46 .. code-block:: yaml 50 '--recover': 51 - run: first [all …]
|
/Zephyr-latest/drivers/i2c/ |
D | Kconfig.mcux | 4 # SPDX-License-Identifier: Apache-2.0 24 must be enabled to allow the driver to fully recover.
|
D | i2c_shell.c | 4 * SPDX-License-Identifier: Apache-2.0 30 length -= 1; in get_bytes_count_for_hex() 47 * https://manpages.debian.org/buster/i2c-tools/i2cdetect.8.en.html 61 return -ENODEV; in cmd_i2c_scan() 86 shell_fprintf(shell_ctx, SHELL_NORMAL, "-- "); in cmd_i2c_scan() 98 /* i2c recover <device> */ 109 return -ENODEV; in cmd_i2c_recover() 130 uint8_t buf[MAX_I2C_BYTES + MAX_BYTES_FOR_REGISTER_INDEX - 1]; in i2c_write_from_buffer() 142 return -ENODEV; in i2c_write_from_buffer() 152 data_length = MAX_I2C_BYTES - reg_addr_bytes; in i2c_write_from_buffer() [all …]
|
D | i2c_npcx_controller.h | 4 * SPDX-License-Identifier: Apache-2.0 34 * @param dev_config Bit-packed 32-bit value to the device runtime configuration 38 * @retval -EIO General input / output error, failed to configure device. 39 * @retval -ERANGE Out of supported i2c frequency. 50 * @retval -ERANGE Stored I2C frequency out of supported range. 51 * @retval -EIO Controller is not configured. 65 * @retval -EIO General input / output error. 66 * @retval -ENXIO No slave address match. 67 * @retval -ETIMEDOUT Timeout occurred for a i2c transaction. 79 * @retval -EBUSY fail to recover the bus. [all …]
|
/Zephyr-latest/arch/arm64/core/ |
D | userspace.S | 4 * SPDX-License-Identifier: Apache-2.0 46 mov x4, #-1 70 2: orr x0, x0, #(MEM_DOMAIN_ALIGN_AND_SIZE - 1) 86 mov x0, #-1 95 /* Recover the syscall parameters from the ESF */ 103 /* Recover the syscall ID */
|
/Zephyr-latest/soc/intel/intel_adsp/ |
D | Kconfig.defconfig | 3 # Copyright (c) 2020-2024 Intel Corporation 4 # SPDX-License-Identifier: Apache-2.0 10 # A workaround for HWMv2 to recover SOF arch/xtensa defaults overridden by arch/host.
|
/Zephyr-latest/include/zephyr/drivers/stepper/ |
D | stepper_drv8424.h | 9 * SPDX-FileCopyrightText: Copyright (c) 2024 Navimatix GmbH 11 * SPDX-License-Identifier: Apache-2.0 22 * @brief After microstep setter fails, attempt to recover into previous state.
|
/Zephyr-latest/boards/nordic/nrf54l15dk/doc/ |
D | index.rst | 15 nRF54L15 Arm Cortex-M33 CPU and the following devices: 21 * :abbr:`TWIM (I2C-compatible two-wire interface master with EasyDMA)` 26 * :abbr:`GRTC (Global real-time counter)` 29 * :abbr:`UARTE (Universal asynchronous receiver-transmitter)` 43 * High-frequency 32 MHz crystal oscillator (HFXO) 44 * Low-frequency 32.768 kHz crystal oscillator (LFXO) 55 +-----------+------------+----------------------+ 58 | CLOCK | on-chip | clock_control | 59 +-----------+------------+----------------------+ 60 | GPIO | on-chip | gpio | [all …]
|
/Zephyr-latest/tests/boards/intel_adsp/smoke/src/ |
D | tests.h | 2 * SPDX-License-Identifier: Apache-2.0 25 * underlying adsp_ipc device, then recover it later.
|
/Zephyr-latest/boards/nordic/nrf5340_audio_dk/doc/ |
D | index.rst | 12 You can use this board for developing LE-Audio-compatible applications that support Auracast™, 24 * nRF5340 dual-core SoC based on the Arm® Cortex®-M33 architecture 25 * CS47L63 Low-Power Audio DSP with mono differential headphone driver 26 * nPM1100 Ultra-small form-factor Power Management IC 27 * On-board digital microphone 28 * On-board power measurement 30 * Built-in debugger 46 * A full-featured Arm Cortex-M33F core with DSP instructions, 47 FPU, and Armv8-M Security Extension, running at up to 128 MHz, 49 * A secondary Arm Cortex-M33 core, with a reduced feature set, [all …]
|
/Zephyr-latest/doc/hardware/peripherals/can/ |
D | shell.rst | 36 * :kconfig:option:`CONFIG_CAN_MANUAL_RECOVERY_MODE` enables the ``can recover`` subcommand. 38 For example, building the :zephyr:code-sample:`hello_world` sample for the :zephyr:board:`frdm_k64f… 41 .. zephyr-app-commands:: 42 :zephyr-app: samples/hello_world 44 …:gen-args: -DCONFIG_SHELL=y -DCONFIG_CAN=y -DCONFIG_CAN_SHELL=y -DCONFIG_STATS=y -DCONFIG_CAN_STAT… 48 interact with the shell. The CAN shell comes with built-in help (unless 49 :kconfig:option:`CONFIG_SHELL_HELP` is disabled). The built-in help messages can be printed by 50 passing ``-h`` or ``--help`` to the ``can`` command or any of its subcommands. All subcommands also 51 support tab-completion of their arguments. 55 also supports tab-completion. A list of all devices available can be obtained using the ``device [all …]
|
/Zephyr-latest/tests/subsys/logging/log_blocking/ |
D | REAME.md | 9 …og messages at all with `CONFIG_LOG_BLOCK_IN_THREAD=y`, `CONFIG_LOG_BLOCK_IN_THREAD_TIMEOUT_MS=-1`. 24 case, the units themselves cancel-out. In the table we assume there exists an 28 |----------------|------------|-------------|------| 29 | Input-Limited | 1 | N | 1 | 31 | Output-Limited | 1 | 1/N | 1/N | 36 Rate-limiting of any kind can be described approximately as _back pressure_. 42 Many log backends, such as UARTs, have a built-in hardware FIFO that 43 inherently provides back-pressure; output log processing is rate-limited 46 rate-limited by the physical layer over which they operate, be it Gigabit 49 Even a trivial _message source_ or _message sink_ is still rate-limited by [all …]
|
/Zephyr-latest/kernel/ |
D | fatal.c | 4 * SPDX-License-Identifier: Apache-2.0 88 * synchronize between CPUs, so an arch-layer lock is in z_fatal_error() 99 reason_to_str(reason), _current_cpu->id); in z_fatal_error() 136 "Attempted to recover from a kernel panic condition"); in z_fatal_error() 143 "Attempted to recover from a fatal error in ISR"); in z_fatal_error()
|
/Zephyr-latest/arch/posix/ |
D | CMakeLists.txt | 1 # SPDX-License-Identifier: Apache-2.0 12 # For ex. target_compile_options(native_simulator INTERFACE "-m64") 16 # For ex. target_link_options(native_simulator INTERFACE "-lstdc++") 29 …roperty(TARGET native_simulator APPEND PROPERTY LOCALIZE_EXTRA_OPTIONS "--localize-symbol=spinel*") 47 # some gcc versions fail to build without -fPIC 48 zephyr_compile_options(-m64 -fPIC) 49 zephyr_link_libraries(-m64) 51 target_link_options(native_simulator INTERFACE "-m64") 52 target_compile_options(native_simulator INTERFACE "-m64") 54 zephyr_compile_options(-m32) [all …]
|
/Zephyr-latest/include/zephyr/logging/ |
D | log.h | 4 * SPDX-License-Identifier: Apache-2.0 39 * not possible to recover. 122 * severe errors, such as those from which it's not possible to recover. 181 * not possible to recover. 234 * severe errors, such as those from which it's not possible to recover. 359 * @brief Create module-specific state and register the module with Logger. 366 * - The module consists of more than one file, and another file 369 * - Instance logging is used and there is no need to create module entry. In 374 * - module name 375 * - optional log level. If not provided then default log level is used in [all …]
|
/Zephyr-latest/soc/silabs/silabs_sim3/sim3u/ |
D | soc.c | 4 * SPDX-License-Identifier: Apache-2.0 107 cycles--; in busy_delay() 123 * recover from a broken firmware. in soc_early_init_hook()
|
/Zephyr-latest/soc/nordic/ |
D | soc.yml | 2 - name: nordic_nrf 4 - name: nrf51 6 - name: nrf51822 7 - name: nrf52 9 - name: nrf52805 10 - name: nrf52810 11 - name: nrf52811 12 - name: nrf52820 13 - name: nrf52832 14 - name: nrf52833 [all …]
|
/Zephyr-latest/scripts/coccinelle/ |
D | ms_timeout.cocci | 1 // Copyright (c) 2019-2020 Nordic Semiconductor ASA 2 // SPDX-License-Identifier: Apache-2.0 7 // These constants used to have the values 0 and -1 respectively; they 8 // are now timeout values which are opaque non-integral values that 11 // which is -1. 13 // Options: --include-headers 28 |can_(write|recover) 74 - K_NO_WAIT 77 - K_FOREVER 131 - K_NO_WAIT [all …]
|