Skip to content

Commit 1f9c874

Browse files
committed
Correct implementation error
1 parent aa74d94 commit 1f9c874

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

13_AVR_CPU.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ Die Generierung der Warteschleife von 1s ist dem Delay-Generator http://darcy.rs
669669
int main (void) {
670670
DDRB |= (1 << PB5);
671671
while(1) {
672-
// PINB ^= (1 << PB5); // Dieses Feature ist im Simulator
672+
// PINB = (1 << PB5); // Dieses Feature ist im Simulator
673673
PORTB ^= ( 1 << PB5 );
674674
_delay_ms(1000);
675675
}

0 commit comments

Comments
 (0)