Using the query and interrupt method to generate timing pulse programming using the microcontroller timer T0

Publisher:老实巴交的大叔Latest update time:2017-10-14 Source: eefocusKeywords:Query Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

   Timer T0 is used to generate timing pulses. A positive pulse with a width of 2 machine cycles is generated every 2ms, and this timing sequence pulse signal is output by P1.0 (assuming the clock frequency is 6MHZ).


    Answer: First, find the initial value of timer T0. Since the clock frequency is 6MHZ, the machine cycle is 2µs.


    Because: t = (213-T0 initial value) ´ Machine cycle


    Therefore, when t=2ms, then: (213-T0 initial value) ´ 2´10-6=2´10-3


Solution: T0 initial value = 7096 = 11011101 11000B, where the upper 8 bits 11011101 B = DDH are assigned to TH0, and the lower 5 bits 11000B = 18H are assigned to TL0.


method one:

       Using the query working mode, the programming is as follows:


              ORG 0000H

              AJMP MAIN 

              ORG 0100H


    MAIN: CLR P1.0

              MOV TMOD, #00H; Set the working mode of T0 

            MOV TH0 , #0DDH ; send initial value to timer T0 

MOV TL0 , #18H


        SETB TR0; start T0 work


        LOOP: JNB TF0, $; $ is the current instruction pointer address

           CLR TF0        


           SETB P1.0; generates a 2µs positive pulse 

           CLR P1.0 

           MOV TH0 , #0DDH; reload TH0 and TL0


           MOV TL0 , #18H

           SJMP LOOP


           END


Method Two:


Using interrupt working mode, programming is as follows:

           ORG 0000H


           AJMP MAIN

           ORG 000BH

           AJMP T0INT 

           ORG 0100H


  MAIN:CLR P1.0


           MOV TH0 , #0DDH ; send initial value to timer T0


MOV TL0 , #18H 

        MOV IE , #82H; Enable T0 interrupt


           SETB TR0; Start T0


           SJMP$ 

   Interrupt service routine:


           ORG 0300H


 T0INT: SETB P1.0 

           CLR P1.0


           MOV TH0 , #0DDH; reload TH0 and TL0 

           MOV TL0 , #18H 

           RETI




Keywords:Query Reference address:Using the query and interrupt method to generate timing pulse programming using the microcontroller timer T0

Previous article:Programming of outputting square wave pulse signal in T0 working mode of internal timer of single chip microcomputer
Next article:Comparison of two programming methods for 16-bit unsigned numerical control stored in the internal RAM of 8031 ​​microcontroller

Recommended ReadingLatest update time:2024-11-16 16:18

【STM8L】STM8L timer2 generates PWM
1. Introduction This article introduces how to use timer2 in the STM8L series to generate 38K frequency PWM. Among them, this article uses the first channel (PB0) of timer2. 2. Experimental Platform Compiler software: IAR for STM8 1.42.2 Hardware platform: stm8l101f3p6 development board Emulator: ST-LINK
[Microcontroller]
【STM8L】STM8L timer2 generates PWM
AT89S52 (Timer 2) Timer2
Timer counter 2 is a 16-bit timer/counter. The C/T2 bit of the T2CON register can be used to select the timing or counting function. Timer 2 has three operating modes: capture, automatic reload (incremental or decremental counting) and baud rate generator. These three modes are selected by the bits in T2CON. The speci
[Microcontroller]
AT89S52 (Timer 2) Timer2
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号