Im currently using the arduino GIGA r1 wifi for a project and im trying to setup an interrupt pin however whenever I include the AttachInterupt() function as shown below whenever i upload my code to the board the boot0 light blinks read and my code doesnt run. when i run arduios example code of interrupts it works fine. so any ideas as to why this would break my code would be appreciated
const int pin_interrupt = 9;
attachInterrupt(digitalPinToInterrupt(pin_interrupt),interrupt_handler, CHANGE);
3 posts - 3 participants