Skip to content

Commit

Permalink
Merge branch 'contrib/github_pr_14010' into 'master'
Browse files Browse the repository at this point in the history
fix(ulp): Write pin's output mode to the correct register (GitHub PR)

Closes IDFGH-13065

See merge request espressif/esp-idf!31581
  • Loading branch information
sudeep-mohanty committed Jun 19, 2024
2 parents e57c686 + 37fad48 commit e5d9d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ulp/ulp_riscv/ulp_core/include/ulp_riscv_gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ static inline uint8_t ulp_riscv_gpio_get_level(gpio_num_t gpio_num)

static inline void ulp_riscv_gpio_set_output_mode(gpio_num_t gpio_num, rtc_io_out_mode_t mode)
{
REG_SET_FIELD(RTC_IO_TOUCH_PAD0_REG + gpio_num * 4, RTC_IO_TOUCH_PAD0_DRV, mode);
REG_SET_FIELD(RTC_GPIO_PIN0_REG + gpio_num * 4, RTC_GPIO_PIN0_PAD_DRIVER, mode);
}

static inline void ulp_riscv_gpio_pullup(gpio_num_t gpio_num)
Expand Down

0 comments on commit e5d9d1d

Please sign in to comment.