gpio_hold_dis() function
Disable gpio pad hold function. When the chip is woken up from peripheral power-down sleep, the gpio will be set to the default mode, so, the gpio will output the default level if this function is called. If you don't want the level changes, the gpio should be configured to a known state before this function is called. e.g. If you hold gpio18 high during Deep-sleep, after the chip is woken up and `gpio_hold_dis` is called, gpio18 will output low level(because gpio18 is input mode by default). If you don't want this behavior, you should configure gpio18 as output mode and set it to high level before calling `gpio_hold_dis`.
Arguments
gpio_num
GPIO number, only support output-capable GPIOs
Return value
- ESP_OK Success - ESP_ERR_NOT_SUPPORTED Not support pad hold function