23 lines
338 B
C
23 lines
338 B
C
/*
|
|
* main.h
|
|
*
|
|
* Created on: 20.07.2016
|
|
* Author: q242695
|
|
*/
|
|
#ifndef MAIN_H_
|
|
#define MAIN_H_
|
|
|
|
#ifndef F_CPU
|
|
#define F_CPU 9600000L
|
|
#endif
|
|
|
|
//#define __AVR_ATtiny13A__
|
|
#define LED PB3
|
|
|
|
#include <avr/io.h>
|
|
//#include <avr/iotn13.h>
|
|
//#include <util/delay.h>
|
|
//#include <avr/pgmspace.h>
|
|
|
|
#endif /* MAIN_H_ */
|