Skip to content
Snippets Groups Projects
Select Git revision
  • a26f450b1ce194ae9744666474d9116520c1ffdf
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

blink-0.c

Blame
  • blink-0.c 148 B
    #include <avr/io.h>
    
    int main (void)
    {
      DDRD = 0x40;   /* binär: 0100 0000 */
      PORTD = 0x40;  /* binär: 0100 0000 */
      while (1);
      return 0;
    }