| /Zephyr-latest/cmake/modules/ |
| D | west.cmake | 65 # Keep this version identical to the one in scripts/requirements-base.txt
|
| D | unittest.cmake | 44 set(ZEPHYR_BASE ${ENV_ZEPHYR_BASE} CACHE PATH "Zephyr base")
|
| /Zephyr-latest/arch/riscv/core/ |
| D | stacktrace.c | 83 if ((thread->base.user_options & K_USER) != 0) { in in_stack_bound()
|
| /Zephyr-latest/dts/arm/nxp/ |
| D | nxp_rt7xx_cm33_cpu1.dtsi | 89 * Note that the offsets here are relative to the base address. 90 * The base addresses differ between non-secure (0x40000000)
|
| /Zephyr-latest/doc/services/device_mgmt/ |
| D | mcumgr_backporting.rst | 17 Versions of Zephyr past 2.7 use the MCUmgr library that is `part of the Zephyr code base <https://g… 123 * The Zephyr code base
|
| /Zephyr-latest/doc/hardware/peripherals/ |
| D | mspi.rst | 112 The mspi controller's bindings should reference mspi-controller.yaml as one of the base. 135 The mspi device's bindings should reference mspi-device.yaml as one of the base.
|
| /Zephyr-latest/subsys/net/lib/coap/ |
| D | Kconfig | 56 int "base length of the random generated initial ACK timeout in ms" 60 This value is used as a base value to retry pending CoAP packets.
|
| /Zephyr-latest/samples/bluetooth/cap_acceptor/src/ |
| D | cap_acceptor_broadcast.c | 232 static void base_recv_cb(struct bt_bap_broadcast_sink *sink, const struct bt_bap_base *base, in base_recv_cb() argument 235 memcpy(broadcast_sink.received_base, base, base_size); in base_recv_cb()
|
| /Zephyr-latest/doc/build/kconfig/ |
| D | setting.rst | 281 type once at the "base" definition of the symbol is a good idea for reasons 285 ``default`` values given on the "base" definition of a symbol. Internally, this 342 dependencies from the base definition of the symbol to avoid weakening a 383 As an example, assume that a choice has the following base definition (here,
|
| /Zephyr-latest/scripts/west_commands/runners/ |
| D | stm32cubeprogrammer.py | 152 multi_base=functools.wraps(int)(lambda s: int(s, base=0))
|
| /Zephyr-latest/drivers/ieee802154/ |
| D | Kconfig.nrf5 | 55 int "UICR base register for the EUI64 value"
|
| /Zephyr-latest/doc/hardware/peripherals/edac/ |
| D | ibecc.rst | 74 IPC mechanisms universally use local IRQ locking as the base layer for all
|
| /Zephyr-latest/kernel/ |
| D | events.c | 125 z_abort_timeout(&thread->base.timeout); in event_walk_op()
|
| /Zephyr-latest/drivers/dma/ |
| D | dma_dw_common.h | 257 uintptr_t base; member
|
| /Zephyr-latest/modules/hal_infineon/abstraction-rtos/source/COMPONENT_ZEPHYR/ |
| D | cyabs_rtos_zephyr.c | 226 if (((*thread)->z_thread.base.thread_state & _THREAD_DEAD) != 0) { in cy_rtos_get_thread_state() 229 switch ((*thread)->z_thread.base.thread_state) { in cy_rtos_get_thread_state()
|
| /Zephyr-latest/drivers/serial/ |
| D | uart_ifx_cat1.c | 249 uint32_t status = Cy_SCB_UART_GetRxFifoStatus(data->obj.base); in ifx_cat1_uart_err_check() 375 uint32_t mask = Cy_SCB_GetTxInterruptStatusMasked(data->obj.base); in ifx_cat1_uart_irq_tx_ready() 442 uint32_t intcause = Cy_SCB_GetInterruptCause(data->obj.base); in ifx_cat1_uart_irq_is_pending() 458 (Cy_SCB_UART_GetNumInRxFifo(data->obj.base) == 0u)) { in ifx_cat1_uart_irq_update()
|
| /Zephyr-latest/arch/arm64/core/ |
| D | mmu.c | 1304 is_user = (thread->base.user_options & K_USER) != 0; in arch_mem_domain_thread_add() 1337 if ((thread->base.user_options & K_USER) == 0) { in arch_mem_domain_thread_remove() 1341 if ((thread->base.thread_state & _THREAD_DEAD) == 0) { in arch_mem_domain_thread_remove() 1371 if ((incoming->base.user_options & K_USER) == 0) { in z_arm64_thread_mem_domains_init()
|
| /Zephyr-latest/cmake/linker/arcmwdt/ |
| D | target.cmake | 115 # base linker options
|
| /Zephyr-latest/arch/xtensa/core/ |
| D | vector_handlers.c | 87 ((thread->base.user_options & K_USER) == K_USER)) { in xtensa_is_outside_stack_bounds()
|
| /Zephyr-latest/subsys/net/ip/ |
| D | net_private.h | 278 extern char *net_byte_to_hex(char *ptr, uint8_t byte, char base, bool pad);
|
| /Zephyr-latest/drivers/regulator/ |
| D | regulator_npm1300.c | 545 static int get_enabled_reg(const struct device *dev, uint8_t base, uint8_t offset, uint8_t mask, in get_enabled_reg() argument 551 int ret = mfd_npm1300_reg_read(config->mfd, base, offset, &data); in get_enabled_reg()
|
| /Zephyr-latest/drivers/gpio/ |
| D | gpio_ambiq.c | 23 uint32_t base; member 594 .base = DT_REG_ADDR(DT_INST_PARENT(n)), \
|
| /Zephyr-latest/cmake/ |
| D | llext-edk.cmake | 11 # directories (build/zephyr, zephyr base, west top dir and application source 55 # <install-dir>/include/zephyr/include/generated, files coming from zephyr base at
|
| /Zephyr-latest/lib/heap/ |
| D | heap.c | 159 uint8_t *mem = p, *base = (uint8_t *)chunk_buf(h); in mem_to_chunkid() local 160 return (mem - chunk_header_bytes(h) - base) / CHUNK_UNIT; in mem_to_chunkid()
|
| /Zephyr-latest/scripts/kconfig/ |
| D | guiconfig.py | 1304 base = 10 if sym.type == INT else 16 1306 int(s, base) 1321 if not int(low_s, base) <= int(s, base) <= int(high_s, base):
|