22 lines
296 B
C
22 lines
296 B
C
|
/*
|
||
|
* config.h
|
||
|
*
|
||
|
* Created: 06.10.2013 17:05:43
|
||
|
* Author: netz
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef CONFIG_H_
|
||
|
#define CONFIG_H_
|
||
|
|
||
|
|
||
|
#define F_CPU 16000000
|
||
|
#define BAUD_RATE 9600
|
||
|
|
||
|
#include <util/delay.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <avr/interrupt.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
|
||
|
#endif /* CONFIG_H_ */
|