13 lines
166 B
C
13 lines
166 B
C
|
|
#ifndef CONFIG_H_
|
||
|
|
#define CONFIG_H_
|
||
|
|
|
||
|
|
// Set CPU rate
|
||
|
|
#ifndef F_CPU
|
||
|
|
#define F_CPU 16000000UL
|
||
|
|
#endif
|
||
|
|
|
||
|
|
// Set UART Baud rate
|
||
|
|
#define BAUD 9600UL
|
||
|
|
|
||
|
|
#endif /* CONFIG_H_ */
|