-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
Hello,
Thank you for your library.
I have an issue in your library which is not working on ATtiny series AVR chip (I have tested on Attiny85/84)
It is working fine on Atmega328. The problem is from PinChangeInterruptHandler library.
Can you make the code excluding PinChangeInterruptHandler.h . because, normal pinchange interrupt is working directly by the following example code
GIMSK = 0b00100000; // turns on pin change interrupts
PCMSK = 0b00000100; // turn on interrupts on pins PB2
sei();
ISR(PCINT0_vect) {
value++
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels