Skip to content

Commit 58303c4

Browse files
committed
Correct code in hello World
1 parent 5ade849 commit 58303c4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

13_AVR_CPU.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

513513
Quellen für Reset
514514

@@ -690,7 +690,8 @@ Die Generierung der Warteschleife von 1s ist dem Delay-Generator http://darcy.rs
690690
int 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
}

0 commit comments

Comments
 (0)