Home
last modified time | relevance | path

Searched refs:period (Results 26 – 50 of 265) sorted by relevance

1234567891011

/Zephyr-latest/include/zephyr/devicetree/
Dpwms.h249 DT_PWMS_CELL_BY_IDX(node_id, idx, period)
266 DT_PWMS_CELL_BY_NAME(node_id, name, period)
424 DT_INST_PWMS_CELL_BY_IDX(inst, idx, period)
435 DT_INST_PWMS_CELL_BY_NAME(inst, name, period)
/Zephyr-latest/include/zephyr/bluetooth/mesh/
Dheartbeat.h47 uint32_t period; member
53 uint32_t period; member
/Zephyr-latest/drivers/timer/
Dcc13xx_cc26xx_rtc_timer.c153 uint64_t period; in startDevice() local
168 period = RTC_COUNTS_PER_TICK; in startDevice()
169 if (period < 0x40000) { in startDevice()
173 compare = period >> 16; in startDevice()
/Zephyr-latest/soc/st/stm32/stm32wbax/hci_if/
Dstm32_timer.c17 uint32_t period, UTIL_TIMER_Mode_t mode, in UTIL_TIMER_Create() argument
24 timer_object->ReloadValue = period * TICKS_PER_MS; in UTIL_TIMER_Create()
/Zephyr-latest/drivers/led/
Dlp3943.c132 uint16_t period; in lp3943_led_blink() local
135 period = delay_on + delay_off; in lp3943_led_blink()
137 if (period < dev_data->min_period || period > dev_data->max_period) { in lp3943_led_blink()
154 val = (period * 255U) / dev_data->max_period; in lp3943_led_blink()
Dled_mchp_xec.c148 uint32_t period, prescaler, dcs; in xec_bbled_blink() local
160 period = delay_on + delay_off; in xec_bbled_blink()
161 if ((period < XEC_BBLED_BLINK_PERIOD_MIN_MS) in xec_bbled_blink()
162 || (period > XEC_BBLED_BLINK_PERIOD_MAX_MS)) { in xec_bbled_blink()
/Zephyr-latest/scripts/native_simulator/native/src/
Dhw_counter.c58 void hw_counter_set_period(uint64_t period) in hw_counter_set_period() argument
60 counter_period = period; in hw_counter_set_period()
/Zephyr-latest/drivers/input/
DKconfig.cf113323 int "Sample period"
27 Sample period in milliseconds when in polling mode.
DKconfig.cst816s15 int "Sample period"
19 Sample period in milliseconds when in polling mode.
DKconfig.ft533620 int "Sample period"
24 Sample period in milliseconds when in polling mode.
DKconfig.gt91118 int "Sample period"
22 Sample period in milliseconds when in polling mode.
/Zephyr-latest/tests/drivers/pwm/pwm_gpio_loopback/src/
Dmain.c168 (uint64_t)10000 * abs(measured_period_ns - pwm_dt->period) / pwm_dt->period; in check_timing()
180 if (check_range(measured_period_ns, pwm_dt->period) && in check_timing()
195 uint32_t pulse = (uint32_t)((pwm_dt->period * duty) / 100); in test_run()
200 pwm_dt->channel, pwm_dt->period, pulse, inverted ? "Yes" : "No"); in test_run()
203 result = pwm_set_dt(pwm_dt, pwm_dt->period, pulse); in test_run()
/Zephyr-latest/tests/drivers/pwm/pwm_api/src/
Dtest_pwm.c125 static int test_task(uint32_t port, uint32_t period, uint32_t pulse, uint8_t unit) in test_task() argument
128 port, period, pulse); in test_task()
139 if (pwm_set_cycles(pwm_dev, port, period, pulse, 0)) { in test_task()
145 if (pwm_set(pwm_dev, port, period, pulse, 0)) { in test_task()
/Zephyr-latest/drivers/watchdog/
Dwdt_nxp_s32.c96 uint32_t period; member
191 REG_WRITE(SWT_TO, SWT_TO_WTO(data->timeout.period)); in swt_nxp_s32_setup()
238 uint32_t period; in swt_nxp_s32_install_timeout() local
253 period = clock_rate / 1000U * cfg->window.max; in swt_nxp_s32_install_timeout()
260 if ((period < SWT_TO_WTO_MIN) || (period < window)) { in swt_nxp_s32_install_timeout()
265 data->timeout.period = period; in swt_nxp_s32_install_timeout()
271 period, window, window_mode ? "enabled" : "disabled"); in swt_nxp_s32_install_timeout()
/Zephyr-latest/drivers/ethernet/
DKconfig.gecko27 int "Carrier check timeout period (ms)"
31 Set the RX idle timeout period in milliseconds after which the
/Zephyr-latest/soc/altr/zephyr_nios2f/cpu/
Dghrd_timing.sdc8 create_clock -name {altera_reserved_tck} -period 41.667 [get_ports { altera_reserved_tck }]
13 create_clock -name {clk_50} -period 20.000 {clk_50}
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_heartbeat.c64 ASSERT_EQUAL(SUBSCRIBE_PERIOD_SEC, sub->period); in sub_hb_recv_cb()
99 ASSERT_EQUAL(SUBSCRIBE_PERIOD_SEC, sub->period); in sub_hb_end_cb()
116 ASSERT_EQUAL(PUBLISH_PERIOD_SEC, pub->period); in pub_hb_sent_cb()
143 .period = PUBLISH_PERIOD_SEC, in publish_common()
/Zephyr-latest/drivers/clock_control/
Dclock_control_pwm.c51 ret = pwm_set_dt(spec, spec->period, spec->period / 2); in clock_control_pwm_on()
95 *rate = NSEC_PER_SEC / config->pwm_dt.period; in clock_control_pwm_get_rate()
/Zephyr-latest/scripts/native_simulator/native/src/include/
Dhw_counter.h23 void hw_counter_set_period(uint64_t period);
/Zephyr-latest/samples/boards/bbc/microbit/pong/boards/
Dbbc_microbit.overlay3 /* period is always set dynamically by the application */
/Zephyr-latest/drivers/sensor/microchip/mchp_tach_xec/
DKconfig32 bool "Configure 3 tach edges or 1 tach period"
35 bool "Configure 2 tach edges or 1/2 tach period"
/Zephyr-latest/samples/subsys/usb/hid-keyboard/
Dlarge_in_report.overlay12 in-polling-period-us = <1000>;
Dlarge_out_report.overlay13 out-polling-period-us = <16000>;
Dout_report.overlay13 out-polling-period-us = <16000>;
/Zephyr-latest/subsys/task_wdt/
Dtask_wdt_shell.c44 uint32_t period = atoi(argv[1]) * MSEC_PER_SEC; in cmd_add() local
46 int ret = task_wdt_add(period, NULL, NULL); in cmd_add()

1234567891011