Lines Matching full:period
91 LOG_ERR("Cannot capture both period and pulse width"); in mcux_pwt_configure_capture()
97 LOG_ERR("Cannot capture period in normal polarity (active-high pulse)"); in mcux_pwt_configure_capture()
167 uint32_t period; in mcux_pwt_calc_period() local
170 if (u32_add_overflow(high_overflows, low_overflows, &period)) { in mcux_pwt_calc_period()
175 if (u32_mul_overflow(period, 0xFFFFU, &period)) { in mcux_pwt_calc_period()
180 if (u32_add_overflow(period, ppw, &period)) { in mcux_pwt_calc_period()
185 if (u32_add_overflow(period, npw, &period)) { in mcux_pwt_calc_period()
189 *result = period; in mcux_pwt_calc_period()
218 uint32_t period = 0; in mcux_pwt_isr() local
259 &period); in mcux_pwt_isr()
266 LOG_DBG("period = %d, pulse = %d, err = %d", period, pulse, in mcux_pwt_isr()
271 period, pulse, err, data->user_data); in mcux_pwt_isr()