Search found 3 matches

by Tushar Kanani
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: 19925

Re: Interrupts being triggered by AC Load when pull resistor is connected

Hi,

I am also facing the same issue.
Does anyone have any solution to overcome from it?

Thanks
by Tushar Kanani
Thu Apr 05, 2018 3:35 am
Forum: Report Bugs
Topic: Re-enable of interrupt is not working
Replies: 2
Views: 4865

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...
by Tushar Kanani
Wed Apr 04, 2018 3:53 am
Forum: Report Bugs
Topic: Re-enable of interrupt is not working
Replies: 2
Views: 4865

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...