How to Use Timer-1 in AT89C1051 (16-bit Mode)
The following code demonstrate, how to generate clock of 1.0Hz using timer-1 in 16-bit mode. Every 50,000 micro-second timer-1 overflow flag goes high and port P3.0 is inverted. The code is written in Keil uVision2 IDE and simulation is done with Proteus 8.0. At the end of code, you can find complete project files for download.
Code Using Keil uVision2
#include
#include
// proto-types
void ConfigTimer1(void);
void MonitorTimer1OverflowFlag(void);
void Delayms(unsigned int x_time);
// pin labling
sbit PULSE = P3^0;
sbit LED = P1^0;
#include
// proto-types
void ConfigTimer1(void);
void MonitorTimer1OverflowFlag(void);
void Delayms(unsigned int x_time);
// pin labling
sbit PULSE = P3^0;
sbit LED = P1^0;
void main(void)
{
// make pins as output
PULSE = 0;
LED = 0;
// config timer-1
ConfigTimer1();
while(1)
{
PULSE = ~PULSE;
MonitorTimer1OverflowFlag();
}
}
void ConfigTimer1(void)
{
// master clock is 12MHz
// timer clock is 1/12th => 1MHz
// in 16-bit mode timer overflow
// after 65536 usec.
// for overflow every 50,000 usec
// 65,536-50,000 = 15,536 (0x3CB0)
TL1 = 0xB0;
TH1 = 0x3C;
// set timer-1 mode-1 (16-bit)
TMOD = 0x10;
// start timer-1
TR1 = 1;
}
void MonitorTimer1OverflowFlag(void)
{
// monitor timer-1 overflow flag
while(TF1 == 0);
// reset overflow flag
TF1 = 0;
// reload value
TL1 = 0xB0;
TH1 = 0x3C;
}
void Delayms(unsigned int x_time)
{
unsigned int x,y;
for(x=0;x<x_time;x++)
for(y=0;y<122;y++);
}
{
// make pins as output
PULSE = 0;
LED = 0;
// config timer-1
ConfigTimer1();
while(1)
{
PULSE = ~PULSE;
MonitorTimer1OverflowFlag();
}
}
void ConfigTimer1(void)
{
// master clock is 12MHz
// timer clock is 1/12th => 1MHz
// in 16-bit mode timer overflow
// after 65536 usec.
// for overflow every 50,000 usec
// 65,536-50,000 = 15,536 (0x3CB0)
TL1 = 0xB0;
TH1 = 0x3C;
// set timer-1 mode-1 (16-bit)
TMOD = 0x10;
// start timer-1
TR1 = 1;
}
void MonitorTimer1OverflowFlag(void)
{
// monitor timer-1 overflow flag
while(TF1 == 0);
// reset overflow flag
TF1 = 0;
// reload value
TL1 = 0xB0;
TH1 = 0x3C;
}
void Delayms(unsigned int x_time)
{
unsigned int x,y;
for(x=0;x<x_time;x++)
for(y=0;y<122;y++);
}
Download Files
For download Keil project and Proteus 8.0 simulation files, click here.
Comments
Post a Comment