Skip to content

Instantly share code, notes, and snippets.

@avr-programmierung
Created May 14, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avr-programmierung/5a049dc8b76364956d8656b1d13f4444 to your computer and use it in GitHub Desktop.
Save avr-programmierung/5a049dc8b76364956d8656b1d13f4444 to your computer and use it in GitHub Desktop.
ATmega88 @ 8MHz 17
/* code017.c ATmega88 @ 8MHz */
#include <avr/io.h>
int main(void)
{
DDRD = 0xFF;
PORTD = (1<<PD0); // Bit D0 setzen --> 0000 0001
while(1)
{
PORTD = (PORTD << 1); // PORTD um 1 Stelle nach links verschieben
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment