This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef F_CPU | |
#define F_CPU 16000000 | |
#endif | |
#include <avr/io.h> | |
#include <util/delay.h> | |
#define BAUD 9600 | |
#define MYUBRR F_CPU/16/BAUD-1 |