aboutsummaryrefslogtreecommitdiff
path: root/ATmega48/Source/d_timer.r
diff options
context:
space:
mode:
Diffstat (limited to 'ATmega48/Source/d_timer.r')
-rw-r--r--ATmega48/Source/d_timer.r34
1 files changed, 0 insertions, 34 deletions
diff --git a/ATmega48/Source/d_timer.r b/ATmega48/Source/d_timer.r
deleted file mode 100644
index 9798be9..0000000
--- a/ATmega48/Source/d_timer.r
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// Programmer
-//
-// Date init 14.12.2004
-//
-// Reviser $Author:: Dktochpe $
-//
-// Revision date $Date:: 2-09-05 14:37 $
-//
-// Filename $Workfile:: d_timer.r $
-//
-// Version $Revision:: 4 $
-//
-// Archive $Archive:: /LMS2006/Sys01/Ioctrl/Firmware/Source/d_timer. $
-//
-// Platform C
-//
-
-#ifdef ATMEGAX8
-
-#define TIMERInit {\
- TCCR2A = 0x00;\
- TCCR2B = 0x06;\
- TCNT2 = 0x00;\
- }
-
-#define TIMERRead TCNT2
-
-
-#define TIMERExit {\
- }
-
-
-#endif