Home
last modified time | relevance | path

Searched refs:high_time (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/tests/drivers/pwm/pwm_gpio_loopback/src/
Dmain.c44 uint32_t high_time; member
78 ctx.high_time = elapsed_time; in gpio_edge_isr()
82 if (ctx.high_time && ctx.low_time) { in gpio_edge_isr()
92 ctx.high_time = 0; in setup_edge_detect()
162 uint32_t measured_period = ctx.high_time + ctx.low_time; in check_timing()
164 uint32_t pulse_time = inverted ? ctx.low_time : ctx.high_time; in check_timing()
173 measured_period, ctx.high_time, ctx.low_time); in check_timing()
/Zephyr-latest/drivers/clock_control/
Dclock_control_litex.c291 uint8_t low_time, high_time; in litex_clk_update_global_config() local
312 high_time = (mult1 >> HIGH_TIME_POS) & HL_TIME_MASK; in litex_clk_update_global_config()
313 ldev->g_config.mul = low_time + high_time; in litex_clk_update_global_config()
320 high_time = (divreg >> HIGH_TIME_POS) & HL_TIME_MASK; in litex_clk_update_global_config()
321 ldev->g_config.div = low_time + high_time; in litex_clk_update_global_config()
361 uint8_t low_time, high_time; in litex_clk_get_clkout_divider() local
373 high_time = (div >> HIGH_TIME_POS) & HL_TIME_MASK; in litex_clk_get_clkout_divider()
374 *divider = low_time + high_time; in litex_clk_get_clkout_divider()
456 lcko->div.edge, lcko->div.high_time, in litex_clk_print_params()
851 uint8_t clkout_nr, high_time, edge, no_cnt, frac_en, frac_cnt; in litex_clk_get_duty_cycle() local
[all …]
Dclock_control_litex.h183 uint8_t high_time; member