Home
last modified time | relevance | path

Searched full:start (Results 1 – 25 of 2058) sorted by relevance

12345678910>>...83

/Zephyr-Core-3.5.0/doc/connectivity/usb/pd/
Ducds.rst41 :start-after: usbc.rst usbc-port start
50 :start-after: usbc.rst vbus-voltage-divider-adc start
60 :start-after: usbc.rst port data object start
68 :start-after: usbc.rst callbacks start
76 :start-after: usbc.rst check start
84 :start-after: usbc.rst notify start
92 :start-after: usbc.rst register start
100 :start-after: usbc.rst user data start
104 Start the USB-C subsystem:
108 :start-after: usbc.rst usbc start
[all …]
/Zephyr-Core-3.5.0/tests/drivers/i2s/i2s_api/src/
Dtest_i2s_loopback.c15 * - TX stream START trigger starts transmission.
16 * - RX stream START trigger starts reception.
40 /* Start reception */ in ZTEST_USER()
42 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
44 /* Start transmission */ in ZTEST_USER()
46 zassert_equal(ret, 0, "TX START trigger failed"); in ZTEST_USER()
81 * - TX stream START trigger starts transmission.
82 * - RX stream START trigger starts reception.
101 /* Start reception */ in ZTEST_USER()
103 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
[all …]
Dtest_i2s_states.c14 * - Sending START, DRAIN, STOP, DROP, PREPARE trigger in NOT_READY state
118 * - Sending START, PREPARE trigger in RUNNING state returns failure.
134 /* Start reception */ in ZTEST_USER()
136 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
138 /* Start transmission */ in ZTEST_USER()
140 zassert_equal(ret, 0, "TX START trigger failed"); in ZTEST_USER()
174 * - Sending START, STOP, DRAIN, PREPARE trigger in STOPPING state returns
191 /* Start reception */ in ZTEST_USER()
193 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
195 /* Start transmission */ in ZTEST_USER()
[all …]
/Zephyr-Core-3.5.0/lib/os/
Dwinstream.c44 uint32_t start = ws->start, end = ws->end, seq = ws->seq; in sys_winstream_write() local
47 * (Max bytes buffered is actually len-1 because start==end is in sys_winstream_write()
51 start = end; in sys_winstream_write()
55 /* Make room in the buffer by advancing start first (note same in sys_winstream_write()
60 uint32_t avail = (ws->len - 1) - idx_sub(ws, end, start); in sys_winstream_write()
63 ws->start = idx_mod(ws, start + (len - avail)); in sys_winstream_write()
70 ws->start = end; in sys_winstream_write()
88 uint32_t seq0 = *seq, start, end, wseq, len, behind, copy, suffix; in sys_winstream_read() local
91 start = ws->start; end = ws->end; wseq = ws->seq; in sys_winstream_read()
95 if (*seq == wseq || start == end) { in sys_winstream_read()
[all …]
/Zephyr-Core-3.5.0/samples/subsys/zbus/uart_bridge/src/
Dcore.c25 struct action_msg start = {false}; in core_thread() local
28 LOG_DBG("Core sending start measurement with status %d", start.status); in core_thread()
30 start.status = !start.status; in core_thread()
31 zbus_chan_pub(&start_measurement_chan, &start, K_MSEC(500)); in core_thread()
/Zephyr-Core-3.5.0/samples/subsys/zbus/remote_mock/
DREADME.rst43 D: START processing channel start_measurement change
48 D: START processing channel sensor_data change
72 Proxy PUB [start_measurement] -> start measurement
74 Proxy PUB [start_measurement] -> start measurement
76 Proxy PUB [start_measurement] -> start measurement
78 Proxy PUB [start_measurement] -> start measurement
80 Proxy PUB [start_measurement] -> start measurement
82 Proxy PUB [start_measurement] -> start measurement
84 Proxy PUB [start_measurement] -> start measurement
86 Proxy PUB [start_measurement] -> start measurement
[all …]
/Zephyr-Core-3.5.0/arch/riscv/core/
Dpmp.c23 * Thread-specific m-mode and u-mode PMP entries start from the PMP slot
68 unsigned long start, end, tmp; in print_pmp_entries() local
72 start = (index == 0) ? 0 : (pmp_addr[index - 1] << 2); in print_pmp_entries()
76 start = pmp_addr[index] << 2; in print_pmp_entries()
77 end = start + 3; in print_pmp_entries()
81 start = tmp & (tmp + 1); in print_pmp_entries()
85 start = 0; in print_pmp_entries()
98 start, end, in print_pmp_entries()
143 * case start=0 size=0 is valid and means the whole address range.
148 * @param start Start address of the memory area to cover
[all …]
/Zephyr-Core-3.5.0/scripts/release/
Dlist_devicetree_bindings_changes.py42 binding between the start and end commits. See subclasses
52 start and end commits.'''
62 start: List[str]
67 start: List[str]
81 start: str
87 start: Any
93 start: Any
99 start: Any
105 start: bool
111 start: bool
[all …]
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/adv/resume/src/
Ddut.c20 printk("DUT start\n"); in dut_procedure()
22 /* start scanning (using NRPA) */ in dut_procedure()
36 * But since we pass the `persist` flag, it will start up as soon as a in dut_procedure()
39 * We can't start it with the `persist` flag the first time, because adv in dut_procedure()
60 printk("DUT start\n"); in dut_procedure_2()
62 /* Start a resumable advertiser. */ in dut_procedure_2()
/Zephyr-Core-3.5.0/include/zephyr/timing/
Dtiming.h21 uint64_t soc_timing_cycles_get(volatile timing_t *const start,
32 uint64_t board_timing_cycles_get(volatile timing_t *const start,
57 * @brief Signal the start of the timing information gathering.
89 * @brief Get number of cycles between @p start and @p end.
94 * @param start Pointer to counter at start of a measured execution.
96 * @return Number of cycles between start and end.
98 static inline uint64_t timing_cycles_get(volatile timing_t *const start, in timing_cycles_get() argument
102 return board_timing_cycles_get(start, end); in timing_cycles_get()
104 return soc_timing_cycles_get(start, end); in timing_cycles_get()
106 return arch_timing_cycles_get(start, end); in timing_cycles_get()
/Zephyr-Core-3.5.0/include/zephyr/arch/arc/
Darch.h136 * +------------+ <- thread.stack_info.start
142 * +------------+ <- thread.stack_info.start + thread.stack_info.size
166 * +------------+ <- thread.stack_info.start
172 * +------------+ <- thread.stack_info.start + thread.stack_info.size
194 * +------------+ <- thread.stack_obj = thread.stack_info.start
200 * +------------+ <- thread.stack_info.start + thread.stack_info.size
212 * +------------+ <- thread.stack_info.start
218 * +------------+ <- thread.stack_info.start + thread.stack_info.size
239 * +------------+ <- thread.stack_info.start
245 * +------------+ <- thread.stack_info.start + thread.stack_info.size
[all …]
/Zephyr-Core-3.5.0/soc/riscv/riscv-privileged/andes_v5/
Dpma.c44 #define NAPOT_BASE(start, size) TO_PMA_ADDR((start) & ~((size) - 1)) argument
48 #define NA4_ENCODING(start) TO_PMA_ADDR(start) argument
49 #define NAPOT_ENCODING(start, size) (NAPOT_BASE(start, size) \ argument
66 unsigned long start; member
131 pmaaddr = NA4_ENCODING(region_conf->start); in region_init()
134 pmaaddr = NAPOT_ENCODING(region_conf->start, region_conf->size); in region_init()
144 * PMA region start address and size.
158 /* Start address of the region must align with size */ in pma_region_is_valid()
159 if (region->start & (region->size - 1)) { in pma_region_is_valid()
170 .start = (unsigned long)&_nocache_ram_start, in configure_nocache_region()
/Zephyr-Core-3.5.0/drivers/sensor/bmi270/
Dbmi270_i2c.c19 uint8_t start, uint8_t *data, uint16_t len) in bmi270_reg_read_i2c() argument
21 return i2c_burst_read_dt(&bus->i2c, start, data, len); in bmi270_reg_read_i2c()
24 static int bmi270_reg_write_i2c(const union bmi270_bus *bus, uint8_t start, in bmi270_reg_write_i2c() argument
27 return i2c_burst_write_dt(&bus->i2c, start, data, len); in bmi270_reg_write_i2c()
/Zephyr-Core-3.5.0/arch/arm/core/mpu/
Darm_core_mpu.c40 /* Convenience macros to denote the start address and the size of the system
71 .start = (uint32_t)&__gcov_bss_start,
79 .start = (uint32_t)&_nocache_ram_start,
87 .start = (uint32_t)&__ramfunc_start,
95 .start = (uint32_t)&__ram_text_reloc_start,
110 .start = (uint32_t)z_main_stack,
133 * Start address of the image is given by _image_ram_start. The end in z_arm_configure_static_mpu_regions()
157 .start = _MPU_DYNAMIC_REGIONS_AREA_START, in z_arm_configure_static_mpu_regions()
201 * thread->stack_info.start. On a K_USER thread, the guard is defined in z_arm_configure_dynamic_mpu_regions()
231 partition->start, partition->size); in z_arm_configure_dynamic_mpu_regions()
[all …]
/Zephyr-Core-3.5.0/kernel/
Dmem_domain.c42 LOG_ERR("partition is writable and executable <start %lx>", in check_add_partition()
43 part->start); in check_add_partition()
50 part, part->start); in check_add_partition()
54 pstart = part->start; in check_add_partition()
55 pend = part->start + part->size; in check_add_partition()
59 part, part->start, part->size); in check_add_partition()
74 dstart = dpart->start; in check_add_partition()
79 part, part->start, part->size, in check_add_partition()
80 dpart->start, dpart->size); in check_add_partition()
193 part->start, part->size, domain); in k_mem_domain_add_partition()
[all …]
/Zephyr-Core-3.5.0/scripts/west_commands/runners/
Dstm32flash.py53 choices=['erase', 'info', 'start', 'write'],
54 help='erase / get device info / start execution / write flash')
65 parser.add_argument('--start-addr', default=0, required=False,
66 help='specify start address for write operation, default \'0\'')
69 help='start execution at specified address, default \'0\' \
70 which means start of flash')
111 elif action == 'start':
112 # start execution
113 msg_text = "start code execution at {}".format(self.exec_addr)
116 msg_text += " (flash start)"
/Zephyr-Core-3.5.0/soc/arm/nordic_nrf/
Dtiming.c45 uint64_t soc_timing_cycles_get(volatile timing_t *const start, in soc_timing_cycles_get() argument
50 if (*end >= *start) { in soc_timing_cycles_get()
51 return (*end - *start); in soc_timing_cycles_get()
53 return COUNTER_SPAN + *end - *start; in soc_timing_cycles_get()
56 return (*end - *start); in soc_timing_cycles_get()
/Zephyr-Core-3.5.0/tests/arch/x86/info/src/
Dtimer.c61 uint32_t start, end; in timer() local
63 start = sync(cmos); in timer()
65 sum += end - start; in timer()
68 start, end, end - start); in timer()
/Zephyr-Core-3.5.0/subsys/logging/backends/
DKconfig.uart32 bool "Automatically start UART backend"
35 When enabled automatically start the UART logging backend on
36 application start. When disabled, the application needs to start
/Zephyr-Core-3.5.0/tests/bluetooth/mesh/blob_io_flash/
Dprj.conf7 # Written chunks have 0xFF padding on start and end to assure word alignment with flash.
8 # Start padding can overlap data of previous chunk; flash drivers can only pull bits down to 0,
9 # so overwriting with 0xFF is not possible. This config allows to "write" start padding 0xFF over
/Zephyr-Core-3.5.0/soc/nios2/nios2f-zephyr/cpu/
Dghrd_10m50da.qsys585 …READ_ADDRESS_MAP"><![CDATA[<address-map><slave name='onchip_memory2_0.s1' start='0x400000' end='0x…
587 …RITE_ADDRESS_MAP"><![CDATA[<address-map><slave name='onchip_memory2_0.s1' start='0x400000' end='0x…
640start='0x0' end='0xB8000' type='altera_onchip_flash.data' /><slave name='a_16550_uart_0.avalon_sla…
679start='0x0' end='0xB8000' type='altera_onchip_flash.data' /><slave name='nios2_gen2_0.debug_mem_sl…
889 start="nios2_gen2_0.data_master"
898 start="nios2_gen2_0.data_master"
907 start="nios2_gen2_0.data_master"
916 start="nios2_gen2_0.data_master"
925 start="nios2_gen2_0.data_master"
934 start="nios2_gen2_0.data_master"
[all …]
/Zephyr-Core-3.5.0/subsys/net/lib/mqtt/
Dmqtt_encoder.c167 * start of the header.
172 * @param[in] start Pointer to the start of the variable header.
174 * The 5 bytes before the start of the message are assumed
177 * length, the pointer to the start of the MQTT message
186 static uint32_t mqtt_encode_fixed_header(uint8_t message_type, uint8_t *start, in mqtt_encode_fixed_header() argument
189 uint32_t length = buf->cur - start; in mqtt_encode_fixed_header()
203 /* Set the pointer at the start of the frame before encoding. */ in mqtt_encode_fixed_header()
204 buf->cur = start - fixed_header_length; in mqtt_encode_fixed_header()
209 /* Set the cur pointer back at the start of the frame, in mqtt_encode_fixed_header()
250 uint8_t *start; in mqtt_message_id_only_enc() local
[all …]
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/mesh/
Dsol_pdu_rpl_cli.h33 * PDU RPL server.The @c start param represents the start of range that server
38 * @param range_start Range start value.
63 * @param range_start Start of Unicast address range.
66 * @param start_rsp Range start response buffer.
78 * @param range_start Start of Unicast address range.
/Zephyr-Core-3.5.0/soc/posix/inf_clock/
DKconfig42 bool "Auto-start this MCU"
45 Automatically start the MCU this Zephyr image is built for during HW boot,
46 even if in other circumstances this MCU would not start automatically (for ex. because
48 If that MCU was, by HW design, going to start at HW boot anyhow, this option does nothing.
/Zephyr-Core-3.5.0/drivers/i2c/
Di2c_bitbang.c83 uint32_t start = k_cycle_get_32(); in i2c_delay() local
86 while (k_cycle_get_32() - start < cycles_to_wait) { in i2c_delay()
129 i2c_delay(context->delays[T_BUF]); /* In case we start again too soon */ in i2c_stop()
195 /* We want an initial Start condition */ in i2c_bitbang_transfer()
198 /* Make sure we're in a good state so slave recognises the Start */ in i2c_bitbang_transfer()
208 /* Forget old flags except start flag */ in i2c_bitbang_transfer()
211 /* Start condition? */ in i2c_bitbang_transfer()
221 /* Send address after any Start condition */ in i2c_bitbang_transfer()
274 * a START condition followed by 9 STOP conditions. in i2c_bitbang_recover_bus()
277 * issuing a START condition followed by 9 SCL clock pulses in i2c_bitbang_recover_bus()
[all …]

12345678910>>...83