19 lines
468 B
C
19 lines
468 B
C
|
|
/* ******************************************************** *
|
||
|
|
* *
|
||
|
|
* Simple Template for ATMEL Microcontroller *
|
||
|
|
* -------------------------------------------------------- *
|
||
|
|
* Created on: 25.07.2016 *
|
||
|
|
* Author: Paolo Iocco *
|
||
|
|
* ******************************************************** */
|
||
|
|
|
||
|
|
#ifndef MAIN_H_
|
||
|
|
#define MAIN_H_
|
||
|
|
|
||
|
|
#include <avr/io.h>
|
||
|
|
|
||
|
|
#ifndef F_CPU
|
||
|
|
#define F_CPU 1000000L
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* MAIN_H_ */
|