zeitgeist87 / RFReceiver

An Arduino library for low-cost 433 MHz receiver modules with a focus on reliable one-way communication and forward error correction
GNU General Public License v3.0
55 stars 12 forks source link

RFReceiver not working on Attiny 85/84 chips #11

Open nizarmhd opened 2 years ago

nizarmhd commented 2 years ago

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 commented 2 years ago

Any updates?