Hi,
I am also facing the same issue.
Does anyone have any solution to overcome from it?
Thanks
Search found 3 matches
- Thu Apr 05, 2018 3:48 am
- Forum: ESP32 Arduino
- Topic: Interrupts being triggered by AC Load when pull resistor is connected
- Replies: 12
- Views: 21957
- Thu Apr 05, 2018 3:35 am
- Forum: Report Bugs
- Topic: Re-enable of interrupt is not working
- Replies: 2
- Views: 5240
Re: Re-enable of interrupt is not working
Hi, Thanks for response. I am new to esp32 so, don't know how to make sure that "enabling it from a task running on a different core?" But by another method, I am able to make it work as below. gpio_set_intr_type(GPIO_1, GPIO_INTR_DISABLE); and gpio_set_intr_type(GPIO_1, GPIO_INTR_ANYEDGE); insted o...
- Wed Apr 04, 2018 3:53 am
- Forum: Report Bugs
- Topic: Re-enable of interrupt is not working
- Replies: 2
- Views: 5240
Re-enable of interrupt is not working
Hi, I am working on Interrupt. I need to disable and enable the interrupt run time. Here is a piece of code that I am using to initialize the interrupt. #define GPIO_1 GPIO_NUM_25 gpio_set_direction(GPIO_1, GPIO_MODE_INPUT); gpio_set_pull_mode(GPIO_1, GPIO_PULLUP_ONLY); attachInterrupt(digitalPinToI...