Home
last modified time | relevance | path

Searched refs:hight_period (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/components/hal/
Di2c_hal.c47 void i2c_hal_set_scl_timing(i2c_hal_context_t *hal, int hight_period, int low_period) in i2c_hal_set_scl_timing() argument
49 i2c_ll_set_scl_timing(hal->dev, hight_period, low_period); in i2c_hal_set_scl_timing()
/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/
Di2c_ll.h186 static inline void i2c_ll_set_scl_timing(i2c_dev_t *hw, int hight_period, int low_period) in i2c_ll_set_scl_timing() argument
189 hw->scl_high_period.period = hight_period/2+2; in i2c_ll_set_scl_timing()
190 hw->scl_high_period.scl_wait_high_period = hight_period - hw->scl_high_period.period; in i2c_ll_set_scl_timing()
/hal_espressif-3.6.0/components/hal/esp32h2/include/hal/
Di2c_ll.h212 static inline void i2c_ll_set_scl_timing(i2c_dev_t *hw, int hight_period, int low_period) in i2c_ll_set_scl_timing() argument
215 hw->scl_high_period.period = hight_period - 10; in i2c_ll_set_scl_timing()
216 hw->scl_high_period.scl_wait_high_period = hight_period - hw->scl_high_period.period; in i2c_ll_set_scl_timing()
/hal_espressif-3.6.0/components/hal/esp32c3/include/hal/
Di2c_ll.h216 static inline void i2c_ll_set_scl_timing(i2c_dev_t *hw, int hight_period, int low_period) in i2c_ll_set_scl_timing() argument
219 hw->scl_high_period.period = hight_period - 10; in i2c_ll_set_scl_timing()
220 hw->scl_high_period.scl_wait_high_period = hight_period - hw->scl_high_period.period; in i2c_ll_set_scl_timing()
/hal_espressif-3.6.0/components/hal/esp32/include/hal/
Di2c_ll.h182 static inline void i2c_ll_set_scl_timing(i2c_dev_t *hw, int hight_period, int low_period) in i2c_ll_set_scl_timing() argument
185 hw->scl_high_period.period = hight_period; in i2c_ll_set_scl_timing()
/hal_espressif-3.6.0/components/hal/include/hal/
Di2c_hal.h202 void i2c_hal_set_scl_timing(i2c_hal_context_t *hal, int hight_period, int low_period);