-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelayTimer.h
More file actions
31 lines (28 loc) · 1.39 KB
/
delayTimer.h
File metadata and controls
31 lines (28 loc) · 1.39 KB
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
/*****************************************************************************
*
* File Name: rtc.h
*
* Content: Header file for RTC.C
*
* Copyright (c) 2001 Mitsubishi Electric Electronics USA, Inc.
* All rights reserved
*
* Mitsubishi Electric & Electronics USA does not guarantee the performance or
* use of this source-code. The intended use of provided source-code is the
* sole responsible of the user. The files have been successfully compiled
* using Mitsubishi's NC30 compiler. Before using this software review the
* source and make any necessary changes to support your hardware and application.
*
*=============================================================================
* $Log: rtc.h,v $
* Revision 1.2 2002-06-07 14:00:16-04 bembry
* Fixed flicker problem. Chang Temp conversion equation fixes problem at "0" crossover point.
*
*===========================================================================*/
#define ENABLE_WAIT 1 // Set to 1 to enable WAIT modes.
#ifndef DELAY_TIMER
#define DELAY_TIMER
extern void init_Timer(void);
extern void wait_ticks(int tickCount);
extern int tick_count(void);
#endif