Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFReceiver not working on Attiny 85/84 chips #11

Open
nizarmhd opened this issue Sep 5, 2021 · 1 comment
Open

RFReceiver not working on Attiny 85/84 chips #11

nizarmhd opened this issue Sep 5, 2021 · 1 comment

Comments

@nizarmhd
Copy link

nizarmhd commented Sep 5, 2021

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++
}

@crolopez
Copy link

Any updates?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants