diff --git a/examples/receive_interrupt/receive_interrupt.ino b/examples/receive_interrupt/receive_interrupt.ino index 69cba15..3ca9b06 100644 --- a/examples/receive_interrupt/receive_interrupt.ino +++ b/examples/receive_interrupt/receive_interrupt.ino @@ -34,7 +34,7 @@ void setup() { delay(100); } SERIAL.println("CAN BUS Shield init ok!"); - + pinMode(CAN_INT_PIN, INPUT); attachInterrupt(digitalPinToInterrupt(CAN_INT_PIN), MCP2515_ISR, FALLING); // start interrupt }