File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -508,7 +508,7 @@ Der EEPROM ist nicht Bestandteil des _Mapped Memory IO_ Konzepts! Vielmehr exist
508508
509509### Reset-System
510510
511- ![ Bild] ( ./images/13_AVR_CPU/ResetSystem.png " Resetsystem des Controllers, Seite 57, [^megaAVR] ") <!-- style="width: 75%; max-width: 1000px" --> [ ^ 11 ]
511+ ![ Bild] ( ./images/13_AVR_CPU/ResetSystem.png " Resetsystem des Controllers, Seite 57, [^megaAVR] ") <!-- style="width: 75%; max-width: 1000px" -->
512512
513513Quellen für Reset
514514
@@ -690,7 +690,8 @@ Die Generierung der Warteschleife von 1s ist dem Delay-Generator http://darcy.rs
690690int main (void) {
691691 DDRB |= (1 << PB5);
692692 while(1) {
693- // PINB = (1 << PB5); // Dieses Feature ist im Simulator
693+ // PINB = (1 << PB5); // Dieses Feature ist im Simulator nicht
694+ // implementiert
694695 PORTB ^= ( 1 << PB5 );
695696 _ delay_ms(1000);
696697 }
You can’t perform that action at this time.
0 commit comments