14 lines
161 B
C
14 lines
161 B
C
|
/*
|
||
|
* Copyright (c) by BlackMark 2015
|
||
|
* Date 24/11/2015
|
||
|
* Version 1.1
|
||
|
*/
|
||
|
|
||
|
#ifndef CLOCK_H
|
||
|
#define CLOCK_H
|
||
|
|
||
|
#define F_CPU 16000000
|
||
|
|
||
|
#include <util/delay.h>
|
||
|
|
||
|
#endif
|