To achieve precise delay using the system tick timer, the following five steps are required:
1. Set the tick timer clock by setting its control register and selecting the external clock, which is one eighth of the system clock. If the system clock is 72M, the tick timer clock is 9M. That is, it takes 9M clock cycles to time one second.
2. Set the value of the tick timer reload register, which is the number of clock cycles required for delay. For example, if a delay of 20 microseconds is required, the reload value is 20*9. If a delay of 20 milliseconds is required, the reload value is set to 20*9000.
3. Clear the value of the tick timer current value register to zero, so that it can count down from the set value when counting is enabled.
4. Set the tick timer control register to start countdown.
5. Query the status bit of the tick timer. When the timing time is up, turn off the timer and clear the current value of the timer.
void delay_init(u8 SYSCLK)
{
SysTick->CTRL&=0xfffffffb;//Control register, select external clock, which is one eighth of the system clock (HCLK/8; 72M/8=9M)
fac_us=SYSCLK/8; //Define global variables, that is, the number of clock cycles required to delay one microsecond (72/8=9, in microseconds)
fac_ms=(u16)fac_us*1000; //The number of clock cycles required for one millisecond (9000)
}
void Delay_us(u32 nus)
{
u32 temp;
SysTick->LOAD=nus*fac_us; //Time loading (that is, how many clock cycles to delay)
SysTick->VAL=0x00; //Clear counter
SysTick->CTRL=0x01; //Start countdown
do
{
temp=SysTick->CTRL;
}
while(temp&0x01&&!(temp&(1<<16)));//Wait for time to arrive
SysTick->CTRL=0x00; //Turn off counter
SysTick->VAL =0X00; //Clear counter
}
orvoid
Delay_us(u32 Nus)
{
SysTick->LOAD=Nus*9; //Time loading 72M main frequency
SysTick->CTRL|=0x01; //Start countdownwhile
(!(SysTick->CTRL&(1<<16))); //Wait for time to arrive
SysTick->CTRL=0X00000000; //Turn off counter
SysTick->VAL=0X00000000; //Clear counter
}
Previous article:Simulation IIC timing based on stm32 microcontroller
Next article:arm exception handling process
Recommended ReadingLatest update time:2024-11-16 16:37
- 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 relationship between pulse+, pulse- and U2B output is logical AND.
- Southern dumplings and northern dumplings, what do you eat during the Winter Solstice?
- About using the emulator to adjust the STM32 program
- [Intuitive Explanation of Operational Amplifiers] Intuitive animation explains the working principle of operational amplifiers in detail, vivid and easy to understand!
- Need to burn multiple firmwares for mass production? Just rely on this tool!
- SinlinxA33 development board wireless wifi settings
- Lora data analysis and data transmission to the cloud platform
- 【Visual Home Environment Analyzer】+ADI Smoke Sensor Appreciation
- NB-IoT and LoraWan technical analysis and prospects
- Which companies are the big manufacturers in the embedded field?