Home
last modified time | relevance | path

Searched full:using (Results 1 – 25 of 3137) sorted by relevance

12345678910>>...126

/Zephyr-latest/lib/cpp/minimal/include/
Dcstdint19 using ::int8_t;
20 using ::int16_t;
21 using ::int32_t;
22 using ::int64_t;
23 using ::intmax_t;
25 using ::int_fast8_t;
26 using ::int_fast16_t;
27 using ::int_fast32_t;
28 using ::int_fast64_t;
30 using ::int_least8_t;
[all …]
Dcstddef19 using ::ptrdiff_t;
20 using ::size_t;
22 using ::max_align_t;
23 using nullptr_t = decltype(nullptr);
/Zephyr-latest/modules/hal_ethos_u/
DKconfig18 bool "using Ethos-U55 with 64 macs"
20 bool "using Ethos-U55 with 128 macs"
22 bool "using Ethos-U55 with 256 macs"
24 bool "using Ethos-U65 with 128 macs"
26 bool "using Ethos-U65 with 256 macs"
28 bool "using Ethos-U65 with 512 macs"
30 bool "using Ethos-U85 with 128 macs"
32 bool "using Ethos-U85 with 256 macs"
34 bool "using Ethos-U85 with 512 macs"
36 bool "using Ethos-U85 with 1024 macs"
[all …]
/Zephyr-latest/doc/hardware/peripherals/
Dstepper.rst11 - Configure **micro-stepping resolution** using :c:func:`stepper_set_micro_step_res`
13 - Configure **reference position** in microsteps using :c:func:`stepper_set_reference_position`
15 - Set **step interval** in nanoseconds between steps using :c:func:`stepper_set_microstep_interval`
16 - **Enable** the stepper driver using :c:func:`stepper_enable`.
21 - **Move by** +/- micro-steps also known as **relative movement** using :c:func:`stepper_move_by`.
22 - **Move to** a specific position also known as **absolute movement** using :c:func:`stepper_move_t…
24 a stop is detected using :c:func:`stepper_run`.
25 - Check if the stepper is **moving** using :c:func:`stepper_is_moving`.
26 - Register an **event callback** using :c:func:`stepper_set_event_callback`.
Dcomparator.rst24 configuration must be provided using the devicetree. At runtime, comparators can have their
25 configuration updated using device driver specific APIs. The configuration will be applied
31 Comparators are enabled using power management. When resumed, the comparator will actively
45 * ``await_trigger`` Awaits trigger using the following flow:
47 * Set trigger callback using :c:func:`comparator_set_trigger_callback`
49 * Clear trigger callback using :c:func:`comparator_set_trigger_callback`
/Zephyr-latest/scripts/tests/twister/
DREADME.md9 Install all the dependencies using
17 The testcases can be executed from the root directory using
25 The coverage for all the tests can be run using the command below. This will collect all the tests …
31 Then we can generate the coverage report for just twister script using
43 The html coverage report for twister can be generated using
49 …l report can be generated in every run of "pytest" in the tests directory using configuration file…
/Zephyr-latest/doc/connectivity/bluetooth/shell/classic/
Da2dp.rst9 * Source and Sink sides register a2dp callbacks. using :code:`a2dp register_cb`.
10 …* Source and Sink sides register stream endpoints. using :code:`a2dp register_ep source sbc` and :…
11 … connection. It will create the AVDTP Signaling and Media L2CAP channels. using :code:`a2dp connec…
12 …* Source and Sink side can discover remote device's stream endpoints. using :code:`a2dp discover_p…
13 …figure the stream to create the stream after discover remote's endpoints. using :code:`a2dp config…
14 * Source or Sink establish the stream. using :code:`a2dp establish`.
15 * Source or Sink start the media. using :code:`a2dp start`.
16 * Source test the media sending. using :code:`a2dp send_media` to send one test packet data.
17 * Source or Sink suspend the media. using :code:`a2dp suspend`.
18 * Source or Sink release the media. using :code:`a2dp release`.
/Zephyr-latest/doc/services/debugging/
Dcpu_load.rst6 Module can be used to track how much time is spent in idle. It is using tracing hooks
11 the measurement. By default, module is using :c:func:`k_cycle_get_32` but in cases when higher
14 Load can also be reported periodically using a logging message. Period is configured using :kconfig…
16 Using counter device
/Zephyr-latest/subsys/mgmt/ec_host_cmd/backends/
DKconfig18 bool "Host commands support using eSPI bus"
23 Enable support for Embedded Controller host commands using
27 bool "Host commands support using SHI"
30 Enable support for Embedded Controller host commands using
34 bool "Host commands support using UART"
38 Enable support for Embedded Controller host commands using
42 bool "Host commands support using SPI"
44 Enable support for Embedded Controller host commands using
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/advertiser/
Drelay.sh8 # Allocate an advertiser buffer 1 using bt_mesh_adv_buf_create() with tag BT_MESH_ADV_TAG_LOCAL.
9 # Allocate an advertiser buffer 2 using bt_mesh_adv_buf_create() with tag BT_MESH_ADV_TAG_RELAY.
10 # Allocate an advertiser buffer 3 using bt_mesh_adv_buf_create() with tag BT_MESH_ADV_TAG_RELAY.
11 # Submit the advertiser buffer 1,2 and 3 using bt_mesh_adv_send().
/Zephyr-latest/tests/kernel/poll/src/
Dtest_poll_fail.c18 * @details Using API k_poll with error number
36 * @details Using API k_poll with error member
52 * @details Define a poll event, and using API k_poll with NULL sem
74 * @details Define a poll, and using API k_poll with NULL signal
96 * @details Define a poll, and using API k_poll with NULL fifo
118 * @details Define a poll, and using API k_poll with NULL message queue
141 * @details Using API k_poll_signal_init with NULL as
157 * @details Using API k_poll with NULL object
177 * @details Using k_poll_signal_check with
201 * @details Using k_poll_signal_check with
[all …]
/Zephyr-latest/doc/kernel/services/other/
Datomic.rst19 Using the kernel's atomic APIs to manipulate an atomic variable
32 An atomic variable is defined using a variable of type :c:type:`atomic_t`.
35 a different value using :c:macro:`ATOMIC_INIT`:
44 An atomic variable is manipulated using the APIs listed at the end of
70 However, you can also define an N-bit array of atomic variables using
73 A single bit in array of atomic variables can be manipulated using
77 using an array of atomic variables.
112 Using atomic variables is typically far more efficient than using
113 other techniques to implement critical sections such as using a mutex
/Zephyr-latest/dts/bindings/sdhc/
Despressif,esp32-sdhc-slot.yaml33 using pin control (pinctrl-0 field).
40 using pin control (pinctrl-0 field).
47 using pin control (pinctrl-0 field).
54 using pin control (pinctrl-0 field).
61 using pin control (pinctrl-0 field).
68 using pin control (pinctrl-0 field).
/Zephyr-latest/tests/kernel/timer/timer_behavior/
DKconfig36 # Use 13% on nRF platforms using the RTC timer because one tick there is
48 bool "Perform test using an external tool"
57 int "Maximum drift in PPM for tests using external tool"
60 Parts Per Million of allowed drift when using an external tool
64 int "Maximum timer period drift in PPM for tests using external tool"
67 Parts Per Million of allowed period drift when using an external tool
/Zephyr-latest/subsys/mgmt/mcumgr/transport/
DKconfig.udp24 bool "UDP SMP using IPv4"
28 Enable SMP UDP using IPv4 addressing.
32 bool "UDP SMP using IPv6"
35 Enable SMP UDP using IPv6 addressing.
71 application to manually start and stop the transport using
/Zephyr-latest/include/zephyr/linker/
Dapp_smem.ld8 * When using the "Unix Makefiles" generator, CMake simply
14 * 1. Using A.ld to create a linker script A.cmd.
15 * 2. Using A.cmd to generate A_prebuilt.elf.
16 * 3. Using A_prebuilt.elf to create B.ld.
18 * 5. Creating B_prebuilt.elf using B.cmd.
Dapp_smem_pinned.ld12 * When using the "Unix Makefiles" generator, CMake simply
18 * 1. Using A.ld to create a linker script A.cmd.
19 * 2. Using A.cmd to generate A_prebuilt.elf.
20 * 3. Using A_prebuilt.elf to create B.ld.
22 * 5. Creating B_prebuilt.elf using B.cmd.
/Zephyr-latest/soc/nxp/imxrt/imxrt118x/
Dsoc.c215 /* Configure M7 using ARM_PLL_CLK */ in clock_init()
222 /* Configure M33 using SYS_PLL3_CLK */ in clock_init()
228 /* Configure BUS_AON using SYS_PLL2_CLK */ in clock_init()
233 /* Configure BUS_WAKEUP using SYS_PLL2_CLK */ in clock_init()
238 /* Configure WAKEUP_AXI using SYS_PLL3_CLK */ in clock_init()
243 /* Configure SWO_TRACE using SYS_PLL3_DIV2_CLK */ in clock_init()
249 /* Configure M33_SYSTICK using OSC_24M */ in clock_init()
256 /* Configure M7_SYSTICK using OSC_24M */ in clock_init()
265 /* Configure LPUART0102 using SYS_PLL3_DIV2_CLK */ in clock_init()
273 /* Configure LPI2C0102 using SYS_PLL3_DIV2_CLK */ in clock_init()
[all …]
/Zephyr-latest/tests/drivers/uart/uart_basic_api/src/
Dtest_uart_fifo.c15 * -# Set UART IRQ callback using uart_irq_callback_set().
16 * -# Enable UART TX IRQ using uart_irq_tx_enable().
17 * -# Output the prepared data using uart_fifo_fill().
18 * -# Disable UART TX IRQ using uart_irq_tx_disable().
22 * -# Set UART IRQ callback using uart_irq_callback_set().
23 * -# Enable UART RX IRQ using uart_irq_rx_enable().
25 * -# Read data from UART console using uart_fifo_read().
26 * -# Disable UART TX IRQ using uart_irq_rx_disable().
111 /* Enable Tx/Rx interrupt before using fifo */ in test_fifo_read()
143 /* Enable Tx/Rx interrupt before using fifo */ in test_fifo_fill()
/Zephyr-latest/tests/bsim/bluetooth/ll/bis/
DKconfig5 bool "Test Broadcast ISO using internal LL interface"
7 Test Broadcast ISO using internal LL interface.
13 ensure that using sequential or interleaved packing to create the BIS
/Zephyr-latest/samples/subsys/zbus/benchmark/
DKconfig16 bool "Synchronous using listeners"
19 bool "Asynchronous using subscribers"
22 bool "Asynchronous using message subscribers"
/Zephyr-latest/boards/st/nucleo_wba55cg/support/
Dopenocd.cfg1 # Note: Using OpenOCD using nucloe_wba52cg requires using openocd fork.
/Zephyr-latest/samples/sysbuild/hello_world/
DREADME.rst2 :name: Hello World for multiple board targets using Sysbuild
22 This sample needs to be built with Sysbuild by using the ``--sysbuild`` option.
23 The remote board needs to be specified using ``SB_CONFIG_REMOTE_BOARD``. Some
29 :zephyr_file:`samples/sysbuild/hello_world/sample.yaml` using the
33 :ref:`nrf54h20dk_nrf54h20`, using application and radio cores:
43 The same can be achieved by using the
/Zephyr-latest/doc/services/storage/settings/
Dindex.rst8 provided behind a common API using FCB, NVS, ZMS or a file system. These
33 These are registered using a call to :c:func:`settings_register()` for
34 dynamic handlers or defined using a call to :c:macro:`SETTINGS_STATIC_HANDLER_DEFINE()`
38 This gets called when asking for a settings element value by its name using
43 :c:func:`settings_load()`, or when using :c:func:`settings_runtime_set()` from the
62 initializing a settings handler with a different priority is done using a call to
63 :c:func:`settings_register_with_cprio()` for dynamic handlers or using a call to
71 implement a set of handler functions. These are registered using a call to
78 This gets called when loading values from persistent storage using
82 This gets called when saving a single setting to persistent storage using
[all …]
/Zephyr-latest/boards/st/nucleo_wba52cg/support/
Dopenocd.cfg1 # Note: Using OpenOCD using nucloe_wba52cg requires using STMicroelectronics

12345678910>>...126