STM3库函数用法如下:stm32f10x_tim.c
/**
* @brief Gets the TIMx Counter value.
* @param TIMx: where x can be 1 to 17 to select the TIM peripheral.
* @retval Counter Register value.
*/
uint16_t TIM_GetCounter(TIM_TypeDef* TIMx)
{
/* Check the parameters */
assert_param(IS_TIM_ALL_PERIPH(TIMx));
/* Get the Counter Register value */
return TIMx->CNT;
}
简单明了。
RE:求帮助啊!!!遇到问题了,关于定时器的使用
回复:求帮助啊!!!遇到问题了,关于定时器的使用
直接读取计数器寄存器就可以了
额,不好意思,直接读取计数器寄存器的函数是什么样的啊。。。新手不太明白
回复:求帮助啊!!!遇到问题了,关于定时器的使用
直接读取计数器寄存器就可以了
您的意思是说直接硬件调试读取?
RE:求帮助啊!!!遇到问题了,关于定时器的使用 【悬赏问答】
明白了吧
RE:求帮助啊!!!遇到问题了,关于定时器的使用 【悬赏问答】
/**
* @brief Gets the TIMx Counter value.
* @param TIMx: where x can be 1 to 17 to select the TIM peripheral.
* @retval Counter Register value.
*/
uint16_t TIM_GetCounter(TIM_TypeDef* TIMx)
{
/* Check the parameters */
assert_param(IS_TIM_ALL_PERIPH(TIMx));
/* Get the Counter Register value */
return TIMx->CNT;
}
简单明了。
回复:求帮助啊!!!遇到问题了,关于定时器的使用 【悬赏问答】
RE:求帮助啊!!!遇到问题了,关于定时器的使用 【悬赏问答】