I want to manipulate (input, output) the RTC PINS of my ESP32C3 in the stub function. But I start to doubt the ability of the esp32c3 to do this....
Indeed, in a functional stub, I have tried the following approaches without success:
Classic functions
Example:
Code: Select all
gpio_set_level()
RTC pin function
Example:
Code: Select all
rtc_gpio_set_level()
Register manipulation
Example :
Code: Select all
REG_WRITE(RTC_GPIO_ENABLE_W1TS_REG, BIT(RTC_GPIO_ENABLE_W1TS_S + GPIO_NUM_0))
Can you confirm that the esp32c3 cannot manipulate the RTC pins but only hold them or get woken up?
Or can you tell me how to do it?
Thanks a lot !