/Zephyr-latest/drivers/sensor/tdk/icm42670/ |
D | icm42670_spi.c | 25 static int icm42670_reg_read_spi(const union icm42670_bus *bus, uint8_t start, uint8_t *buf, in icm42670_reg_read_spi() argument 29 uint8_t cmd[] = {(start | 0x80)}; in icm42670_reg_read_spi()
|
/Zephyr-latest/drivers/sensor/bosch/bmm150/ |
D | bmm150_spi.c | 26 uint8_t start, uint8_t *buf, int size) in bmm150_reg_read_spi() argument 52 addr = (start + i) | 0x80; in bmm150_reg_read_spi()
|
/Zephyr-latest/drivers/sensor/bosch/bme280/ |
D | bme280_spi.c | 26 uint8_t start, uint8_t *buf, int size) in bme280_reg_read_spi() argument 52 addr = (start + i) | 0x80; in bme280_reg_read_spi()
|
/Zephyr-latest/drivers/sensor/bosch/bme680/ |
D | bme680_spi.c | 105 uint8_t start, uint8_t *buf, int size) in bme680_reg_read_spi() argument 127 addr = start | BME680_SPI_READ_BIT; in bme680_reg_read_spi() 131 err = bme680_set_mem_page(dev, start); in bme680_reg_read_spi()
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/src/ |
D | main.c | 80 int64_t start = k_uptime_get(); in send_for_time() local 82 while ((k_uptime_get() - start) < sending_time_ms) { in send_for_time() 113 while ((recv_sem != 0) && ((k_uptime_get() - start) < sending_time_ms)) { in send_for_time()
|
/Zephyr-latest/subsys/debug/coredump/ |
D | coredump_internal.h | 20 uintptr_t start; member
|
/Zephyr-latest/soc/nordic/nrf54h/gpd/ |
D | gpd.c | 38 static void start(struct onoff_manager *mgr, onoff_notify_fn notify); 76 ONOFF_TRANSITIONS_INITIALIZER(start, stop, NULL); 110 int64_t start; in nrf_gpd_sync() local 133 start = k_uptime_get(); in nrf_gpd_sync() 134 while (k_uptime_get() - start < GPD_READY_TIMEOUT_MS) { in nrf_gpd_sync() 176 static void start(struct onoff_manager *mgr, onoff_notify_fn notify) in start() function
|
/Zephyr-latest/arch/arc/core/mpu/ |
D | arc_mpu_v6_internal.h | 161 static inline bool _is_in_region(uint32_t r_index, uint32_t start, uint32_t size) in _is_in_region() argument 175 if (start >= r_addr_start && (start + size) <= r_addr_end) { in _is_in_region()
|
/Zephyr-latest/scripts/logging/dictionary/ |
D | database_gen.py | 412 start = None 416 if start is None: 418 start = idx 421 if start is not None: 423 str_maybe = data[start : idx] 427 addr = section['start'] + start 448 start = None 451 start = None
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | pb_adv.c | 94 int64_t start; member 227 .start = delayed_adv_send_start, 733 if (k_uptime_get() - link.tx.start > link.tx.timeout * MSEC_PER_SEC) { in prov_retransmit() 772 link.tx.start = k_uptime_get(); in bearer_ctl_send() 813 struct bt_mesh_adv *start, *adv; in prov_send_adv() local 819 start = adv_create(RETRANSMITS_RELIABLE); in prov_send_adv() 820 if (!start) { in prov_send_adv() 825 net_buf_simple_add_be32(&start->b, link.id); in prov_send_adv() 826 net_buf_simple_add_u8(&start->b, link.tx.id); in prov_send_adv() 828 net_buf_simple_add_u8(&start->b, GPC_START(last_seg(msg->len))); in prov_send_adv() [all …]
|
/Zephyr-latest/subsys/bluetooth/services/nus/ |
D | Kconfig.nus | 20 bool "Auto-enable Bluetooth stack and start LE advertisements" 22 Auto-Enable the Bluetooth stack and start advertising with the NUS
|
/Zephyr-latest/arch/xtensa/include/ |
D | kernel_arch_func.h | 48 size_t ostack = old_thread->stack_info.start; in arch_cohere_stacks() 52 size_t nstack = new_thread->stack_info.start; in arch_cohere_stacks()
|
/Zephyr-latest/scripts/build/ |
D | check_init_priorities.py | 174 start = section.header.sh_addr 177 offset = addr - start 179 start = offset + ptrsize * idx 182 return int.from_bytes(data[start:stop], byteorder="little") 190 start = self._init_level_addr[level] 199 addr = start
|
/Zephyr-latest/boards/96boards/wistrio/ |
D | board.cmake | 3 board_runner_args(stm32flash "--baud-rate=115200" "--start-addr=0x08000000")
|
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/ |
D | test_lwm2m.py | 534 start = time.time() 538 assert (start + 5) < time.time() + 0.5 # Allow 0.5 second diff 539 assert (start + 5) > time.time() - 0.5 543 assert (start + 15) <= time.time() + 1 # Allow 1 second slack. (pMinx + pMax=15) 597 start = time.time() 607 assert (start + 30) < time.time() 608 assert (start + 45) > time.time() - 1 672 start = time.time() 676 assert (start + 30) < time.time() + 2 677 assert (start + 45) > time.time() - 2 [all …]
|
/Zephyr-latest/doc/connectivity/bluetooth/img/ |
D | att_timeout.svg | 1 …start" dominant-baseline="alphabetic" xml:space="preserve">App</text></g><path fill="none" stroke=…
|
/Zephyr-latest/drivers/i2c/ |
D | i2c_sc18im704.c | 149 uint8_t start[] = { in i2c_sc18im_transfer_msg() local 161 start[1] = addr | (msg->flags & I2C_MSG_RW_MASK); in i2c_sc18im_transfer_msg() 162 start[2] = msg->len; in i2c_sc18im_transfer_msg() 164 ret = sc18im704_transfer(dev, start, sizeof(start), NULL, 0); in i2c_sc18im_transfer_msg()
|
/Zephyr-latest/arch/arm/core/mpu/ |
D | arm_mpu.c | 172 region_conf.base = new_region->start; in mpu_configure_region() 177 &new_region->attr, new_region->start, new_region->size); in mpu_configure_region() 313 if (base != partition->start) { in arm_core_mpu_mem_partition_config_update() 329 (void *)partition->start, partition->size); in arm_core_mpu_mem_partition_config_update() 486 .start = 0x0, in z_arm_mpu_init()
|
/Zephyr-latest/drivers/sensor/jedec/ |
D | CMakeLists.txt | 4 # zephyr-keep-sorted-start
|
/Zephyr-latest/doc/kernel/timing_functions/ |
D | index.rst | 26 2. Call :c:func:`timing_start` to signal the start of gathering of 29 3. Call :c:func:`timing_counter_get` to mark the start of code 36 between start and end of code execution.
|
/Zephyr-latest/tests/benchmarks/app_kernel/src/ |
D | pipe_b.c | 163 timing_t start; in pipeput() local 170 start = timing_timestamp_get(); in pipeput() 201 t = (unsigned int)timing_cycles_get(&start, &end); in pipeput()
|
/Zephyr-latest/drivers/sensor/memsic/ |
D | CMakeLists.txt | 5 # zephyr-keep-sorted-start
|
/Zephyr-latest/soc/telink/tlsr/tlsr951x/ |
D | start.S | 22 j start 32 start: label
|
/Zephyr-latest/subsys/tracing/sysview/ |
D | sysview_config.c | 45 Info.StackSize = thread->stack_info.start; in sys_trace_thread_info() 75 .StackBase = thread->stack_info.start, in send_task_list_cb()
|
/Zephyr-latest/subsys/llext/ |
D | llext_mem.c | 34 uintptr_t start, size_t len) in llext_init_mem_part() argument 38 ext->mem_parts[mem_idx].start = start; in llext_init_mem_part() 58 LOG_DBG("region %d: start 0x%zx, size %zd", mem_idx, (size_t)start, len); in llext_init_mem_part()
|