使用stm32cube(HAL libary)为stm32l053r8核生成keil中的getTick()

时间:2015-08-18 09:05:24

标签: stm32

如何使用stm32cube(HAL库)为stm32l053r8核板生成keil中的getTick()函数........

void Pedometer::newStep()
 {
    old_time = new_time; //time in msec of last step
    new_time = getTick(); //time in msec of new step
    float time = new_time - old_time; //time in msec between 
 }

1 个答案:

答案 0 :(得分:1)

检查CubeL0中的HAL_GetTick功能。

语法:

uint32_t HAL_GetTick ( void )

(参见文件“STM32L0xx HAL驱动程序说明”第56页)