Home
last modified time | relevance | path

Searched full:repeat (Results 1 – 25 of 108) sorted by relevance

12345

/Zephyr-latest/tests/ztest/ztress/src/
Dmain.c29 uint32_t repeat = 1000000; in ZTEST() local
39 ZTRESS_EXECUTE(ZTRESS_THREAD(ztress_handler_busy, NULL, repeat, 0, t), in ZTEST()
40 ZTRESS_THREAD(ztress_handler_busy, NULL, repeat, 1000, t)); in ZTEST()
47 ZTRESS_CONTEXT_INITIALIZER(ztress_handler_busy, NULL, repeat, 0, t); in ZTEST()
49 ZTRESS_CONTEXT_INITIALIZER(ztress_handler_busy, NULL, repeat, 1000, t), in ZTEST()
50 ZTRESS_CONTEXT_INITIALIZER(ztress_handler_busy, NULL, repeat, 1000, t) in ZTEST()
70 uint32_t repeat = 10000000; in ZTEST() local
75 ZTRESS_EXECUTE(ZTRESS_THREAD(ztress_handler_busy, NULL, repeat, 0, K_MSEC(1)), in ZTEST()
76 ZTRESS_THREAD(ztress_handler_busy, NULL, repeat, 0, K_MSEC(1))); in ZTEST()
78 zassert_true(ztress_exec_count(0) < repeat); in ZTEST()
[all …]
/Zephyr-latest/drivers/flash/
Dflash_shell.c257 uint32_t repeat; in cmd_test() local
270 repeat = strtoul(argv[3], NULL, 16); in cmd_test()
277 if (repeat == 0) { in cmd_test()
278 repeat = 1; in cmd_test()
287 while (repeat--) { in cmd_test()
333 uint32_t *size, uint32_t *repeat) in read_write_erase_validate() argument
336 shell_error(sh, "Missing parameters: <device> <offset> <size> <repeat>"); in read_write_erase_validate()
341 *repeat = strtoul(argv[3], NULL, 0); in read_write_erase_validate()
349 if (*repeat == 0 || *repeat > 10) { in read_write_erase_validate()
350 shell_error(sh, "<repeat> must be between 1 and 10."); in read_write_erase_validate()
[all …]
/Zephyr-latest/dts/bindings/input/
Dmicrochip,cap12xx.yaml16 repeat:
19 Property to enable the interrupt repeat mode for prolonged touch events.
/Zephyr-latest/tests/lib/mpsc_pbuf/src/
Dmain.c120 int repeat = buffer.size*2; in item_put_no_overwrite() local
123 for (int i = 0; i < repeat; i++) { in item_put_no_overwrite()
178 int repeat = buffer.size; in item_put_saturate() local
184 for (int i = 0; i < repeat / 2; i++) { in item_put_saturate()
196 for (int i = 0; i < repeat + 1; i++) { in item_put_saturate()
201 for (int i = 0; i < repeat; i++) { in item_put_saturate()
223 int repeat = buffer.size - 1; in benchmark_item_put() local
227 for (int i = 0; i < repeat; i++) { in benchmark_item_put()
234 PRINT("single word put time: %d cycles\n", t/repeat); in benchmark_item_put()
237 for (int i = 0; i < repeat; i++) { in benchmark_item_put()
[all …]
/Zephyr-latest/samples/boards/microchip/mec15xxevb_assy6853/power_management/src/
Dpower_mgmt.h21 * @param cycles to repeat the cycle described above.
33 * @param cycles to repeat the cycle described above.
/Zephyr-latest/tests/subsys/pm/power_mgmt_soc/src/
Dpower_mgmt.h19 * @param cycles to repeat the cycle described above.
29 * @param cycles to repeat the cycle described above.
/Zephyr-latest/tests/lib/spsc_pbuf/src/
Dmain.c68 int repeat = capacity / (sizeof(message) + sizeof(uint32_t)); in test_spsc_pbuf_flags() local
70 for (int i = 0; i < repeat; i++) { in test_spsc_pbuf_flags()
87 for (size_t i = 0; i < repeat; i++) { in test_spsc_pbuf_flags()
471 uint32_t repeat = 0; in ZTEST() local
478 ZTRESS_EXECUTE(ZTRESS_TIMER(stress_read, &ctx, repeat, Z_TIMEOUT_TICKS(4)), in ZTEST()
479 ZTRESS_THREAD(stress_write, &ctx, repeat, 2000, Z_TIMEOUT_TICKS(4))); in ZTEST()
483 ZTRESS_EXECUTE(ZTRESS_TIMER(stress_write, &ctx, repeat, Z_TIMEOUT_TICKS(4)), in ZTEST()
484 ZTRESS_THREAD(stress_read, &ctx, repeat, 1000, Z_TIMEOUT_TICKS(4))); in ZTEST()
541 uint32_t repeat = 0; in ZTEST() local
549 ZTRESS_EXECUTE(ZTRESS_THREAD(stress_claim_free, &ctx, repeat, 0, Z_TIMEOUT_TICKS(4)), in ZTEST()
[all …]
/Zephyr-latest/tests/drivers/uart/uart_mix_fifo_poll/src/
Dmain.c311 static void init_test_data(struct test_data *data, const uint8_t *buf, int repeat) in init_test_data() argument
316 data->max = repeat; in init_test_data()
321 int repeat = CONFIG_STRESS_TEST_REPS; in ZTEST() local
327 init_test_data(&test_data[i], txbuf[i], repeat); in ZTEST()
336 init_test_data(&int_async_data, txbuf3, repeat); in ZTEST()
364 zassert_equal(source[i].cnt, repeat, in ZTEST()
366 i, source[i].cnt, repeat); in ZTEST()
/Zephyr-latest/modules/hal_nordic/nrf-regtool/
Dnrf-regtoolConfig.cmake5 string(REPEAT "-v;" ${CONFIG_NRF_REGTOOL_VERBOSITY} verbosity)
21 string(REPEAT "-v;" ${CONFIG_NRF_REGTOOL_VERBOSITY} verbosity)
/Zephyr-latest/subsys/fs/
Dshell.c554 uint32_t repeat; in cmd_read_test() local
564 shell_error(sh, "Missing parameters: read_test <path> <repeat>"); in cmd_read_test()
569 repeat = strtol(argv[2], NULL, 0); in cmd_read_test()
571 if (repeat == 0 || repeat > 10) { in cmd_read_test()
572 shell_error(sh, "<repeat> must be between 1 and 10."); in cmd_read_test()
592 while (loops < repeat) { in cmd_read_test()
647 uint32_t repeat; in cmd_erase_write_test() local
656 shell_error(sh, "Missing parameters: erase_write_test <path> <size> <repeat>"); in cmd_erase_write_test()
662 repeat = strtol(argv[3], NULL, 0); in cmd_erase_write_test()
669 if (repeat == 0 || repeat > 10) { in cmd_erase_write_test()
[all …]
/Zephyr-latest/drivers/input/
Dinput_cap12xx.c33 bool repeat; member
192 if (config->repeat) { in cap12xx_init()
223 .repeat = DT_INST_PROP(index, repeat), \
/Zephyr-latest/tests/subsys/logging/log_benchmark/src/
Dmain.c219 int repeat = 8; in ZTEST() local
221 for (int i = 0; i < repeat; i++) { in ZTEST()
230 cyc / repeat, us / repeat); in ZTEST()
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/provision/
Dpb_remote_reprovision.sh14 # 6. Repeat steps 3-5 multiple times.
/Zephyr-latest/tests/drivers/i2s/i2s_speed/boards/
Dmimxrt1170_evk_mimxrt1176_cm7.conf17 # Repeat test continually to help find intermittent issues
/Zephyr-latest/soc/microchip/mec/common/reg/
Dmec_adc.h36 /* Delay register. Start and repeat delays in units of 40 us */
61 /* Repeat Conversion Select register */
165 volatile uint32_t REPEAT; member
/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/persistence/
Dreprovisioning.sh17 # Repeat the test
/Zephyr-latest/tests/subsys/ipc/pbuf/src/
Dmain.c263 uint32_t repeat = 0; in ZTEST() local
284 ZTRESS_EXECUTE(ZTRESS_TIMER(stress_read, &ctx, repeat, Z_TIMEOUT_TICKS(4)), in ZTEST()
285 ZTRESS_THREAD(stress_write, &ctx, repeat, 2000, Z_TIMEOUT_TICKS(4))); in ZTEST()
289 ZTRESS_EXECUTE(ZTRESS_TIMER(stress_write, &ctx, repeat, Z_TIMEOUT_TICKS(4)), in ZTEST()
290 ZTRESS_THREAD(stress_read, &ctx, repeat, 1000, Z_TIMEOUT_TICKS(4))); in ZTEST()
/Zephyr-latest/drivers/i2c/
Di2c_numaker.c24 #define M_REPEAT_START 0x10 /* Master Repeat Start */
37 #define S_REPEAT_START_STOP 0xA0 /* Slave Transmit Repeat Start or Stop */
121 * Force I2C Repeat Start on I2C Stop/Repeat Start missing in m_numaker_i2c_master_xfer_msg_read_last_byte()
212 * Force I2C Repeat Start on I2C Stop/Repeat Start missing in m_numaker_i2c_master_xfer_msg_end()
216 LOG_WRN("Cannot merge adjacent messages, force I2C Repeat Start"); in m_numaker_i2c_master_xfer_msg_end()
226 /* Do I2C Repeat Start */ in m_numaker_i2c_master_xfer_msg_end()
536 case M_REPEAT_START: /* Master Repeat Start */ in i2c_numaker_isr()
656 case S_REPEAT_START_STOP: /* Slave Transmit/Receive Repeat Start or Stop */ in i2c_numaker_isr()
/Zephyr-latest/subsys/shell/
Dshell_vt100.h45 /* Set auto-repeat mode */
65 /* Reset auto-repeat mode */
187 /* Repeat power up test */
189 /* Repeat loopback test */
/Zephyr-latest/samples/subsys/mgmt/updatehub/
Doverlay-ot.conf59 # Repeat the above step with your server IPv4 address translated to IPv6
/Zephyr-latest/samples/basic/fade_led/
DREADME.rst14 cycle. Each cycle takes 2.5 seconds, and the cycles repeat forever. The PWM
/Zephyr-latest/drivers/adc/
Dadc_context.h245 bool repeat = false; in adc_context_on_sampling_done() local
257 repeat = true; in adc_context_on_sampling_done()
272 adc_context_update_buffer_pointer(ctx, repeat); in adc_context_on_sampling_done()
/Zephyr-latest/doc/build/snippets/
Ddesign.rst34 - **DRY** (don't repeat yourself): snippets allow you to skip unnecessary
/Zephyr-latest/doc/develop/toolchains/
Dcrosstool_ng.rst19 build your toolchain. Repeat as necessary to build toolchains for multiple
/Zephyr-latest/samples/drivers/led/is31fl3733/
DREADME.rst18 API, and repeat the above tests

12345