summaryrefslogtreecommitdiff
path: root/AT91SAM7S256/Source/d_timer.c
blob: 7c38aed126d1697d379a9d8482a6564e4fd03081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// Date init       14.12.2004
//
// Revision date   $Date:: 16-05-06 10:18                                    $
//
// Filename        $Workfile:: d_timer.c                                     $
//
// Version         $Revision:: 3                                             $
//
// Archive         $Archive:: /LMS2006/Sys01/Main/Firmware/Source/d_timer.c  $
//
// Platform        C
//


#include  "stdconst.h"
#include  "m_sched.h"
#include  "d_timer.h"
#include  "d_timer.r"


void      dTimerInit(void)
{
  TIMERInit;
}


ULONG     dTimerRead(void)
{
  ULONG   Tmp;

  TIMERRead(Tmp);

  return (Tmp);
}


void      dTimerExit(void)
{
  TIMERExit;
}