/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/ |
D | pcnt_ll.h | 223 static inline void pcnt_ll_enable_thres_event(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, bool e… in pcnt_ll_enable_thres_event() argument 225 if (thres == 0) { in pcnt_ll_enable_thres_event() 279 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument 282 if (thres == 0) { in pcnt_ll_set_thres_value() 326 static inline int pcnt_ll_get_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres) in pcnt_ll_get_thres_value() argument 330 if (thres == 0) { in pcnt_ll_get_thres_value()
|
D | rmt_ll.h | 150 static inline void rmt_ll_rx_set_idle_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_idle_thres() argument 152 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->conf_ch[channel].conf0, idle_thres, thres); in rmt_ll_rx_set_idle_thres() 216 static inline void rmt_ll_rx_set_filter_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_filter_thres() argument 218 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->conf_ch[channel].conf1, rx_filter_thres, thres); in rmt_ll_rx_set_filter_thres()
|
D | i2c_ll.h | 605 hw->scl_filter_cfg.thres = filter_num; in i2c_ll_set_filter() 606 hw->sda_filter_cfg.thres = filter_num; in i2c_ll_set_filter() 624 return hw->sda_filter_cfg.thres; in i2c_ll_get_filter()
|
/hal_espressif-3.6.0/components/hal/esp32s3/include/hal/ |
D | pcnt_ll.h | 219 static inline void pcnt_ll_enable_thres_event(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, bool e… in pcnt_ll_enable_thres_event() argument 221 if (thres == 0) { in pcnt_ll_enable_thres_event() 275 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument 278 if (thres == 0) { in pcnt_ll_set_thres_value() 322 static inline int pcnt_ll_get_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres) in pcnt_ll_get_thres_value() argument 326 if (thres == 0) { in pcnt_ll_get_thres_value()
|
D | rmt_ll.h | 160 static inline void rmt_ll_rx_set_idle_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_idle_thres() argument 162 dev->chmconf[channel].conf0.idle_thres_m = thres; in rmt_ll_rx_set_idle_thres() 231 static inline void rmt_ll_rx_set_filter_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_filter_thres() argument 233 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->chmconf[channel].conf1, rx_filter_thres_m, thres); in rmt_ll_rx_set_filter_thres()
|
/hal_espressif-3.6.0/components/hal/esp32/include/hal/ |
D | pcnt_ll.h | 223 static inline void pcnt_ll_enable_thres_event(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, bool e… in pcnt_ll_enable_thres_event() argument 225 if (thres == 0) { in pcnt_ll_enable_thres_event() 279 static inline void pcnt_ll_set_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres, int value) in pcnt_ll_set_thres_value() argument 282 if (thres == 0) { in pcnt_ll_set_thres_value() 326 static inline int pcnt_ll_get_thres_value(pcnt_dev_t *hw, uint32_t unit, uint32_t thres) in pcnt_ll_get_thres_value() argument 330 if (thres == 0) { in pcnt_ll_get_thres_value()
|
D | rmt_ll.h | 148 static inline void rmt_ll_rx_set_idle_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_idle_thres() argument 150 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->conf_ch[channel].conf0, idle_thres, thres); in rmt_ll_rx_set_idle_thres() 188 static inline void rmt_ll_rx_set_filter_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_filter_thres() argument 190 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->conf_ch[channel].conf1, rx_filter_thres, thres); in rmt_ll_rx_set_filter_thres()
|
D | i2c_ll.h | 597 hw->scl_filter_cfg.thres = filter_num; in i2c_ll_set_filter() 598 hw->sda_filter_cfg.thres = filter_num; in i2c_ll_set_filter() 616 return hw->sda_filter_cfg.thres; in i2c_ll_get_filter()
|
/hal_espressif-3.6.0/components/hal/ |
D | rmt_hal.c | 62 uint32_t thres = (uint32_t)(base_clk_hz / 1e6 * thres_us); in rmt_hal_set_rx_filter_thres() local 63 rmt_ll_rx_set_filter_thres(hal->regs, channel, thres); in rmt_hal_set_rx_filter_thres() 68 uint32_t thres = (uint32_t)(base_clk_hz / 1e6 * thres_us); in rmt_hal_set_rx_idle_thres() local 69 rmt_ll_rx_set_idle_thres(hal->regs, channel, thres); in rmt_hal_set_rx_idle_thres()
|
/hal_espressif-3.6.0/components/hal/esp32h2/include/hal/ |
D | rmt_ll.h | 162 static inline void rmt_ll_rx_set_idle_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_idle_thres() argument 164 dev->rx_conf[channel].conf0.idle_thres = thres; in rmt_ll_rx_set_idle_thres() 228 static inline void rmt_ll_rx_set_filter_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_filter_thres() argument 230 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->rx_conf[channel].conf1, rx_filter_thres, thres); in rmt_ll_rx_set_filter_thres()
|
/hal_espressif-3.6.0/components/hal/esp32c3/include/hal/ |
D | rmt_ll.h | 163 static inline void rmt_ll_rx_set_idle_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_idle_thres() argument 165 dev->rx_conf[channel].conf0.idle_thres = thres; in rmt_ll_rx_set_idle_thres() 229 static inline void rmt_ll_rx_set_filter_thres(rmt_dev_t *dev, uint32_t channel, uint32_t thres) in rmt_ll_rx_set_filter_thres() argument 231 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->rx_conf[channel].conf1, rx_filter_thres, thres); in rmt_ll_rx_set_filter_thres()
|
/hal_espressif-3.6.0/components/hal/esp32/ |
D | brownout_hal.c | 26 .thres = cfg->threshold, in brownout_hal_config()
|
/hal_espressif-3.6.0/components/soc/esp32/include/soc/ |
D | i2c_struct.h | 240 …uint32_t thres: 3; /*When input SCL's pulse width is smaller than this regist… member 248 …uint32_t thres: 3; /*When input SCL's pulse width is smaller than this regist… member
|
D | rtc_cntl_struct.h | 540 uint32_t thres: 3; /*brown out threshold*/ member
|
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/ |
D | i2c_struct.h | 262 uint32_t thres: 4; member 270 uint32_t thres: 4; member
|