Select Git revision
Forked from
Peter Gerwinski / hp
328 commits behind the upstream repository.
Peter Gerwinski authored
blink-0a.c 148 B
#include <avr/io.h>
int main (void)
{
DDRD = 0x7f; /* binär: 0111 1111 */
PORTD = 0x40; /* binär: 0100 0000 */
while (1);
return 0;
}