git-svn-id: http://moon:8086/svn/projects/HendiControl@48 fda53097-d464-4ada-af97-ba876c37ca34
21 lines
263 B
C
21 lines
263 B
C
/*
|
|
* machine.h
|
|
*
|
|
* Created: 03.03.2019 09:21:56
|
|
* Author: Jens
|
|
*/
|
|
|
|
|
|
#ifndef MACHINE_H_
|
|
#define MACHINE_H_
|
|
|
|
#if ARDUINO_NANO
|
|
#define F_CPU (16000000UL) // MHz
|
|
#else
|
|
#define F_CPU (18432000UL) // MHz
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* MACHINE_H_ */ |