Skip to content

Commit

Permalink
Fix typo in a sample AVR code
Browse files Browse the repository at this point in the history
  • Loading branch information
mbait authored Aug 28, 2023
1 parent ffc02a3 commit d37fa24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modm/platform/gpio/at90_tiny_mega/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ GpioB2::enablePcInterrupt();
MODM_ISR(PCINT0)
{
if (GpioB1::getPcInterruptFlag()) {
bool state = GpioB2::read();
bool state = GpioB1::read();
// your code
GpioB1::acknowledgePcInterruptFlag();
}
Expand Down

0 comments on commit d37fa24

Please sign in to comment.