/Zephyr-latest/tests/subsys/logging/log_blocking/ |
D | testcase.yaml | 12 - CONFIG_TEST_OUTPUT_LOG_RATE=1000 15 - CONFIG_TEST_INPUT_LOG_RATE=1000 16 - CONFIG_TEST_OUTPUT_LOG_RATE=1000 19 - CONFIG_TEST_INPUT_LOG_RATE=1000 27 - CONFIG_TEST_INPUT_LOG_RATE=1000
|
D | Kconfig | 12 default 1000 19 default 1000
|
/Zephyr-latest/tests/drivers/sensor/adltc2990/boards/ |
D | native_sim.overlay | 13 pin-v1-voltage-divider-resistors = <500 1000>; 15 pin-v3-voltage-divider-resistors = <7000 1000>; 16 pin-v4-voltage-divider-resistors = <500 1000>; 67 pin-v1-voltage-divider-resistors = <500 1000>; 69 pin-v3-voltage-divider-resistors = <7000 1000>; 70 pin-v4-voltage-divider-resistors = <500 1000>; 81 pin-v1-voltage-divider-resistors = <500 1000>; 83 pin-v3-voltage-divider-resistors = <7000 1000>; 84 pin-v4-voltage-divider-resistors = <500 1000>; 93 pin-v1-voltage-divider-resistors = <500 1000>; [all …]
|
/Zephyr-latest/tests/drivers/video/api/src/ |
D | video_common.c | 21 .width_min = 100, .width_max = 1000, .width_step = 50, 22 .height_min = 100, .height_max = 1000, .height_step = 50}, 44 fmt.width = 1000; in ZTEST() 45 fmt.height = 1000; in ZTEST() 46 fmt.pitch = 1000 * 2; in ZTEST() 59 fmt.height = 1000; in ZTEST() 64 fmt.width = 1000; in ZTEST() 66 fmt.pitch = 1000 * 2; in ZTEST() 79 fmt.width = 1000; in ZTEST() 80 fmt.height = 1000; in ZTEST() [all …]
|
/Zephyr-latest/boards/openisa/rv32m1_vega/support/ |
D | openocd_rv32m1_vega_ri5cy.cfg | 6 adapter speed 1000 56 sleep 1000 73 sleep 1000 90 sleep 1000 107 sleep 1000 125 sleep 1000 143 sleep 1000
|
D | openocd_rv32m1_vega_zero_riscy.cfg | 6 adapter speed 1000 56 sleep 1000 73 sleep 1000 90 sleep 1000 107 sleep 1000
|
/Zephyr-latest/tests/ztest/busy_sim/src/ |
D | main.c | 12 uint32_t ms = 1000; in ZTEST() 17 k_busy_wait(1000 * ms); in ZTEST() 24 busy_sim_start(500, 200, 1000, 400, NULL); in ZTEST() 25 k_busy_wait(1000 * ms); in ZTEST() 39 k_busy_wait(1000 * ms); in ZTEST()
|
/Zephyr-latest/tests/boards/native_sim/rtc/src/ |
D | main.c | 43 #define TICK_MS (1000ul / CONFIG_SYS_CLOCK_TICKS_PER_SEC) 92 error = diff / 1000 - WAIT_TIME / acc_ratio; in ZTEST() 111 error = diff - WAIT_TIME * 1000; in ZTEST() 119 error /= 1000; in ZTEST() 126 zassert_true(diff == WAIT_TIME * 1000, in ZTEST() 132 zassert_true(diff == WAIT_TIME * 1000, in ZTEST() 135 start_time += WAIT_TIME * 1000 / acc_ratio; in ZTEST() 136 start_rtc_time[0] += WAIT_TIME * 1000; in ZTEST() 137 start_rtc_time[1] += WAIT_TIME * 1000; in ZTEST() 138 start_rtc_time[2] += WAIT_TIME * 1000; in ZTEST()
|
/Zephyr-latest/tests/drivers/fuel_gauge/bq27z746/src/ |
D | test_bq27z746.c | 132 zassert_equal(vals[3].full_charge_capacity, 1000); in ZTEST_USER_F() 133 zassert_equal(vals[4].remaining_capacity, 1000); in ZTEST_USER_F() 139 zassert_equal(vals[10].voltage, 1000); in ZTEST_USER_F() 142 zassert_equal(vals[13].chg_voltage, 1000); in ZTEST_USER_F() 143 zassert_equal(vals[14].chg_current, 1000); in ZTEST_USER_F() 148 zassert_between_inclusive(props[0].avg_current, -32768 * 1000, 32767 * 1000); in ZTEST_USER_F() 150 zassert_between_inclusive(props[2].current, -32768 * 1000, 32767 * 1000); in ZTEST_USER_F() 151 zassert_between_inclusive(props[3].full_charge_capacity, 0, 32767 * 1000); in ZTEST_USER_F() 152 zassert_between_inclusive(props[4].remaining_capacity, 0, 32767 * 1000); in ZTEST_USER_F() 158 zassert_between_inclusive(props[10].voltage, 0, 32767 * 1000); in ZTEST_USER_F()
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/ |
D | README.rst | 39 [00:00:00.417,877] <inf> host: Perform sends for 1000 [ms] 40 [00:00:01.417,114] <inf> host: Sent 488385 [Bytes] over 1000 [ms] 46 [00:00:01.924,896] <inf> host: Perform sends for 1000 [ms] 47 [00:00:02.924,194] <inf> host: Sent 489340 [Bytes] over 1000 [ms] 56 [00:00:00.006,439] <inf> remote: Perform sends for 1000 [ms] 58 [00:00:01.417,572] <inf> remote: Sent 235527 [Bytes] over 1000 [ms] 63 [00:00:00.006,378] <inf> remote: Perform sends for 1000 [ms] 64 [00:00:01.006,164] <inf> remote: Sent 236797 [Bytes] over 1000 [ms]
|
/Zephyr-latest/drivers/sensor/nct75/ |
D | nct75.c | 24 #define NCT75_TEMPERATURE_CONVERSION_WAIT_TIME_US (NCT75_TEMPERATURE_CONVERSION_TIME_US + 1000) 63 data->value = (raw_value * 1000 * 1000) * 100 / 0x640; in nct75_sample_fetch() 78 val->val1 = data->value / (1000 * 1000); in nct75_channel_get() 79 val->val2 = data->value - val->val1 * 1000 * 1000; in nct75_channel_get()
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/ |
D | lll_tim_internal.h | 9 * "4 / 1000" is an approximation of the propagation time in us of the 12 #define RANGE_DISTANCE 1000 /* meters */ 13 #define RANGE_DELAY_US (2 * RANGE_DISTANCE * 4 / 1000)
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ |
D | lll_tim_internal.h | 9 * "4 / 1000" is an approximation of the propagation time in us of the 12 #define RANGE_DISTANCE 1000 /* meters */ 13 #define RANGE_DELAY_US (2 * RANGE_DISTANCE * 4 / 1000)
|
/Zephyr-latest/tests/ztest/ztress/src/ |
D | main.c | 16 for (int i = 0; i < 1000; i++) { in ztress_handler_busy() 32 int timeout = 1000; in ZTEST() 40 ZTRESS_THREAD(ztress_handler_busy, NULL, repeat, 1000, t)); in ZTEST() 43 zassert_within(d, 1000, 200); 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() 145 ZTRESS_CONTEXT_INITIALIZER(ztress_handler_busy, NULL, repeat, 1000, t), in ZTEST() 146 ZTRESS_CONTEXT_INITIALIZER(ztress_handler_busy, NULL, repeat, 1000, t), in ZTEST() 147 ZTRESS_CONTEXT_INITIALIZER(ztress_handler_busy, NULL, repeat, 1000, t) in ZTEST()
|
/Zephyr-latest/include/zephyr/net/ |
D | mii.h | 43 /** 1000BASE-T Control Register */ 45 /** 1000BASE-T Status Register */ 59 /** 10=1000Mbps 01=100Mbps; 00=10Mbps */ 71 /** 10=1000Mbps 01=100Mbps; 00=10Mbps */ 79 /** select speed 1000 Mb/s */ 141 /* 1000BASE-T Control Register bit definitions */ 142 /** try for 1000BASE-T full duplex support */ 144 /** try for 1000BASE-T half duplex support */ 153 /** 1000BASE-X full-duplex capable */ 155 /** 1000BASE-X half-duplex capable */ [all …]
|
/Zephyr-latest/include/zephyr/dt-bindings/pwm/ |
D | pwm.h | 26 #define PWM_USEC(x) (PWM_NSEC(x) * 1000UL) 28 #define PWM_MSEC(x) (PWM_USEC(x) * 1000UL) 30 #define PWM_SEC(x) (PWM_MSEC(x) * 1000UL) 34 #define PWM_KHZ(x) (PWM_HZ((x) * 1000UL))
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.e1000 | 1 # Intel(R) PRO/1000 Gigabit Ethernet driver configuration options 7 bool "Intel(R) PRO/1000 Gigabit Ethernet driver" 12 Enable Intel(R) PRO/1000 Gigabit Ethernet driver.
|
/Zephyr-latest/drivers/gnss/ |
D | gnss_dump.c | 88 ret = snprintk(str, strsize, fmt, info->satellites_cnt, info->hdop / 1000, in gnss_dump_info() 89 info->hdop % 1000, gnss_fix_status_to_str(info->fix_status), in gnss_dump_info() 111 nav_data->bearing / 1000, nav_data->bearing % 1000, in gnss_dump_nav_data() 112 nav_data->speed / 1000, nav_data->speed % 1000, in gnss_dump_nav_data() 113 alt_sign, abs(nav_data->altitude) / 1000, abs(nav_data->altitude) % 1000); in gnss_dump_nav_data()
|
/Zephyr-latest/dts/common/ |
D | freq.h | 10 #define DT_FREQ_K(x) ((x) * 1000) 11 #define DT_FREQ_M(x) (DT_FREQ_K(x) * 1000)
|
/Zephyr-latest/dts/bindings/mfd/ |
D | infineon,tle9104.yaml | 46 - 1000 59 - 1000 72 - 1000
|
/Zephyr-latest/dts/bindings/sensor/ |
D | invensense,icm42605.yaml | 36 - 1000 54 - 1000 79 - 1000
|
/Zephyr-latest/subsys/canbus/isotp/ |
D | Kconfig | 31 default 1000 34 Timeout for the reception of the next FC frame. ISO 15765-2: 1000ms 38 default 1000 42 ISO 15765-2: 1000ms 46 default 1000 50 ISO 15765-2: 1000ms
|
/Zephyr-latest/tests/boards/intel_adsp/smoke/src/ |
D | cpus.c | 22 for (volatile int j = 0; j < 1000; j++) { in delay_relax() 116 } while ((cc1 - cc0) < 1000 || (cyc1 - cyc0) < 1000); in core_smoke() 118 clk_ratios[cpu] = ((cc1 - cc0) * 1000) / (cyc1 - cyc0); in core_smoke() 120 clk_ratios[cpu] / 1000, clk_ratios[cpu] % 1000); in core_smoke() 130 uint32_t count0 = 1000, count, dt, insns; in core_smoke() 140 printk(" CPI = %d.%2.2d\n", dt / insns, ((1000 * dt) / insns) % 1000); in core_smoke()
|
/Zephyr-latest/boards/amd/kv260_r5/support/ |
D | xsdb.cfg | 13 after 1000 15 after 1000
|
/Zephyr-latest/tests/drivers/sensor/ina237/src/ |
D | ina237_test.c | 73 1000, in test_current() 79 -1000, in test_current() 109 1000, in test_bus_voltage() 140 1000, in test_power() 173 1000, in test_temperature() 178 -1000, in test_temperature() 208 1000, in test_vshunt() 214 -1000, in test_vshunt() 233 vshunt_expected_mV *= 1000 * 1.250e-6; in test_vshunt() 236 vshunt_expected_mV *= 1000 * 5e-6; in test_vshunt()
|