Skip to content

RFReceiver not working on Attiny 85/84 chips #11

@nizarmhd

Description

@nizarmhd

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions