17 lines
198 B
C
17 lines
198 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
|
||
|
|
||
|
|
||
|
#endif /* CONFIG_H_ */
|