1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-07-01 02:44:32 +03:00
ben-blinkenlights/nxuart/fw/nxuart.c
Werner Almesberger fc324599df nxuart/fw/: renamed "uart" to "nxuart" as well
- uart.c: renamed to nxuart.c
- Makefile: abstracted project name through $(NAME)
2011-03-07 14:55:20 -03:00

20 lines
209 B
C

#include <stdint.h>
#include <avr/io.h>
#define F_CPU 1000000UL
#include <util/delay.h>
#define LED 2 /* PD2 */
int main(void)
{
DDRD = 1 << LED;
while (1) {
PORTD ^= 1 << LED;
_delay_ms(50);
}
}