Yesterday a classmate asked me how to implement a function of a microcontroller:
}
Keywords:Timer
Reference address:After the timer is initialized, its value cannot be changed?
1:
If you press KEY1, the 30S countdown will start.
If you press KEY2, the function will be executed and the 30S countdown will be canceled.
2:
If you press KEY1, the 30S countdown will start
. If you press KEY2, the function will be executed and the 30S countdown will be canceled.
If you press KEY1, the 30S countdown will start.
If you press KEY2, the function will be executed and the 30S countdown will be canceled.
2:
If you press KEY1, the 30S countdown will start
. If you press KEY2, the function will be executed and the 30S countdown will be canceled.
After inquiry, it belongs to requirement 1 and uses a matrix keyboard.
Interestingly, I thought requirement 2 was easier to achieve, and I did it right away, but I thought about requirement 1 for a long time. The problem was that after pressing KEY2 to execute other programs, pressing KEY1 did not restart the countdown. I always wondered if I could reassign the timer value, and tried to modify various related registers. It was very strange that after initialization, the timer value seemed to be unable to be changed? I searched online, but could not find any relevant questions.
But in a flash, the answer flashed through my mind, and the final program is as follows (most of the programs and variable definitions are omitted):
void main()
{
init(); // Initialization of timing interrupt
while(1)
{
keyscan();
if (1 == keynum)
{
disp(); //Nixie tube displays countdown
LED = 1;
keyscan();
}
if (2 == keynum)
{
LED = 0;
keyscan();
time = 30; //This is the sentence that implements the countdown again
}
}
void tim1(void) interrupt 1
{
TH0 = (65535-62484)/256;
TL0 = (65535-62484)%6;
timer++; //Because the timer cannot achieve one-second timing, use a variable to achieve
if (timer >= 16)
{
timer = 0;
time--;
if( time <= 0)
time = 30; // used for time display
}
}
The solution to the problem is to reassign the displayed number to 30. Don't worry about the current status of the timer, because the effect is for people to see. As long as the observed appearance meets the requirements, it's fine. Programming is often like this. Although it is not clear whether it affects the accuracy of timing, this way of thinking about the problem from a different angle is indeed a sharp idea.
Previous article:Understanding of ADD and ADDC in assembly
Next article:Convert positive integers to binary and hexadecimal
Recommended Content
Latest Microcontroller Articles
He Limin Column
Microcontroller and Embedded Systems Bible
Professor at Beihang University, dedicated to promoting microcontrollers and embedded systems for over 20 years.
MoreSelected Circuit Diagrams
MorePopular Articles
- Innolux's intelligent steer-by-wire solution makes cars smarter and safer
- 8051 MCU - Parity Check
- How to efficiently balance the sensitivity of tactile sensing interfaces
- What should I do if the servo motor shakes? What causes the servo motor to shake quickly?
- 【Brushless Motor】Analysis of three-phase BLDC motor and sharing of two popular development boards
- Midea Industrial Technology's subsidiaries Clou Electronics and Hekang New Energy jointly appeared at the Munich Battery Energy Storage Exhibition and Solar Energy Exhibition
- Guoxin Sichen | Application of ferroelectric memory PB85RS2MC in power battery management, with a capacity of 2M
- Analysis of common faults of frequency converter
- In a head-on competition with Qualcomm, what kind of cockpit products has Intel come up with?
- Dalian Rongke's all-vanadium liquid flow battery energy storage equipment industrialization project has entered the sprint stage before production
MoreDaily News
- Allegro MicroSystems Introduces Advanced Magnetic and Inductive Position Sensing Solutions at Electronica 2024
- Car key in the left hand, liveness detection radar in the right hand, UWB is imperative for cars!
- After a decade of rapid development, domestic CIS has entered the market
- Aegis Dagger Battery + Thor EM-i Super Hybrid, Geely New Energy has thrown out two "king bombs"
- A brief discussion on functional safety - fault, error, and failure
- In the smart car 2.0 cycle, these core industry chains are facing major opportunities!
- The United States and Japan are developing new batteries. CATL faces challenges? How should China's new energy battery industry respond?
- Murata launches high-precision 6-axis inertial sensor for automobiles
- Ford patents pre-charge alarm to help save costs and respond to emergencies
- New real-time microcontroller system from Texas Instruments enables smarter processing in automotive and industrial applications
Guess you like
- About BL9341DC24V-3.3V
- BQ25619 is a charging chip suitable for headphones
- Zigbee technology discussion;
- Can the highest main frequency of DSP be obtained from the chip model?
- Is there a 24-bit AD chip with a gain of 256?
- How to choose the packaging form of resistors and capacitors? Are there any principles?
- EEWORLD University Hall----Microelectronics Technology (Harbin Institute of Technology)
- About the voltage spike problem of MOS in motor driver
- Embedded processors face side-channel attacks
- Insurance issues