In the actual project development process, it often encounters the need to obtain a piece of code runtime. The usual method is to use an oscilloscope to measure. This blog post will use SysTick to accurately measure the running time of the program. The STM32F4's core timer, SysTick, is a 24-bit timer that requires attention to the maximum measurement time.
1, development environment
1, firmware library: STM32F4xx_DSP_StdPeriph_Lib_V1.8.0
2, Compiler: ARMCC V5.06
3, IDE: Keil uVision5
4, Operating System: Windows 10 Professional Edition
2, program source code
MeasureTime.h file
[cpp] view plain copy/**
************************************************** ****************************
* @file MeasureTime.h
* @author XinLi
* @version v1.0
* @date 24-October-2017
* @brief Measure program run time module.
************************************************** ****************************
* @attention
*
* "h2" "center" Copyright © 2017 XinLi "/center" "/h2"
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see https://.
*
************************************************** ****************************
*/
#ifndef __MEASURETIME_H
#define __MEASURETIME_H
#ifdef __cplusplus
Extern "C" {
#endif
/* Header includes ---------------------------------------------- -------------*/
#include "stm32f4xx.h"
/* Macro definitions ---------------------------------------------- -----------*/
/* Type definitions ---------------------------------------------- ------------*/
/* Variable declarations ---------------------------------------------- -------*/
/* Variable definitions ---------------------------------------------- --------*/
/* Function declarations ---------------------------------------------- -------*/
/* Function definitions ---------------------------------------------- --------*/
/**
* @brief Start measure time.
* @param None.
* @return None.
*/
__STATIC_INLINE void MeasureTimeStart(void)
{
SysTick->CTRL |= SysTick_CLKSource_HCLK; /* Set the SysTick clock source. */
SysTick-"LOAD = 0xFFFFFF; /* Time load (SysTick-" LOAD is 24bit). */
SysTick-"VAL = 0xFFFFFF; /* Empty the counter value. */
SysTick->CTRL |= SysTick_CTRL_ENABLE_Msk; /* Start the countdown. */
__nop(); /* Waiting for a machine cycle. */
}
/**
* @brief Stop measure time.
* @param [in] clock: System clock frequency(unit: MHz).
* @return Program run time(unit: us).
*/
__STATIC_INLINE double MeasureTimeStop(uint32_t clock)
{
Uint32_t count = SysTick-â€VAL; /* Read the counter value. */
SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk; /* Close counter. */
Double time = 0.0;
If(clock ) 0
{
Time = (double)(0xFFFFFF - count) / (double)clock; /* Calculate program run time. */
}
Return time;
}
#ifdef __cplusplus
}
#endif
#endif /* __MEASURETIME_H */
Main.c file
[cpp] view plain copy/**
************************************************** ****************************
* @file main.c
* @author XinLi
* @version v1.0
* @date 24-October-2017
* @brief Main program body.
************************************************** ****************************
* @attention
*
* "h2" "center" Copyright © 2017 XinLi "/center" "/h2"
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see https://.
*
************************************************** ****************************
*/
/* Header includes ---------------------------------------------- -------------*/
#include "main.h"
#include "MeasureTime.h"
/* Macro definitions ---------------------------------------------- -----------*/
/* Type definitions ---------------------------------------------- ------------*/
/* Variable declarations ---------------------------------------------- -------*/
/* Variable definitions ---------------------------------------------- --------*/
Static __IO double runTime = 0.0;
/* Function declarations ---------------------------------------------- -------*/
__STATIC_INLINE void delay_1us(void);
/* Function definitions ---------------------------------------------- --------*/
/**
* @brief Main program.
* @param None.
* @return None.
*/
Int main(void)
{
For(;;)
{
MeasureTimeStart();
Delay_1us();
runTime = MeasureTimeStop(84);
}
}
/**
* @brief One microsecond delay.
* @param None.
* @return None.
*/
__STATIC_INLINE void delay_1us(void)
{
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop(); __nop();
__nop(); __nop(); __nop(); __nop();
}
led grow light bar, horticulture lighting, quantum board driver, 1200W LED Driver, 720W led grow light
ShenZhen Fahold Electronic Limited , https://www.fahold.net