19 lines
226 B
C
19 lines
226 B
C
/*
|
|
* main.h
|
|
*
|
|
* Created on: 20.07.2016
|
|
* Author: q242695
|
|
*/
|
|
#ifndef MAIN_H_
|
|
#define MAIN_H_
|
|
|
|
#include <avr/io.h>
|
|
|
|
#ifndef F_CPU
|
|
#define F_CPU 9600000L
|
|
#endif
|
|
|
|
#define LED PB3
|
|
|
|
#endif /* MAIN_H_ */
|