We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa74d94 commit 1f9c874Copy full SHA for 1f9c874
1 file changed
13_AVR_CPU.md
@@ -669,7 +669,7 @@ Die Generierung der Warteschleife von 1s ist dem Delay-Generator http://darcy.rs
669
int main (void) {
670
DDRB |= (1 << PB5);
671
while(1) {
672
- // PINB ^= (1 << PB5); // Dieses Feature ist im Simulator
+ // PINB = (1 << PB5); // Dieses Feature ist im Simulator
673
PORTB ^= ( 1 << PB5 );
674
_delay_ms(1000);
675
}
0 commit comments