#include
#include
#define uchar unsigned char
#define uint unsigned int
#pragma interrupt_handler timer1:9
flying i,temp;
void delay(uint x)
{
uint y,z;
for(y=x;y>0;y--)
for(z=1111;z>0;z--);
}
void main(void)
{
i=0;
temp=0x01;
TCCR1B=0x04; //T/C1 clock source, 256 division
TCNT1H=0x85; //Assign initial value, external crystal oscillator 8M, timing 1s
TCNT1L=0xed;
TIMSK=0x04; //Open T/C1 interrupt
SREG=0x80;
DDRB=0xff;
while(1);
}
void timer1(void)
{
TCNT1H=0x85;
TCNT1L=0xed;
if(i<8)
{
PORTB=temp;
temp<<=1;
i++;
}
else
{
i=0;
temp=0x01;
}
}
Previous article:ATmega16A uses the process PC port to solve
Next article:AVR microcontroller (ATmega16L) DS18B20 temperature sensor driver
Recommended ReadingLatest update time:2024-11-16 09:44
- Popular Resources
- Popular amplifiers
Professor at Beihang University, dedicated to promoting microcontrollers and embedded systems for over 20 years.
- 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
- 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
- The CH579 environment was successfully built and the first program was downloaded successfully, perfect.
- LPC4357 internal EEPROM read and write problem
- Patch Microstrip Filter Example
- 【AT-START-F425 Review】USB to CAN Part 3
- 2.4-GHz Bluetooth low energy and proprietary system-on-chip
- [Synopsys IP Resources] CDC Verification: One of the Biggest Challenges in Multi-Billion-Gate ASIC Design
- Want to buy Dahua DH-PHSA1.2-SH and DH-PHSA1.5-SH LED modules
- Microphone sound signal extraction and processing
- 5G will change the way we surf the Internet. Will each of us have a small base station?
- Learning to use FPGA to implement video and image processing design