/**
* @brief This function is called to increment a global variable "uwTick"
* used as application time base.
* 这个函数被调用来增加一个全局变量“uwTick”。
* 用作应用程序的时间基数。
* @note In the default implementation, this variable is incremented each 1ms
* in SysTick ISR.
* 在默认实现中,该变量每1ms增加一次
* @note This function is declared as __weak to be overwritten in case of other
* implementations in user file.
* @retval None
*/
__weak void HAL_IncTick(void)
{
uwTick += uwTickFreq;
}
这个是STM32F1的时基,在stm32中
HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout)
这个函数大家肯定不陌生,这是串口的发送,那么里面的TIMEout单位是ms还是微妙呢,在STM32F1XX_HAL.C中确定了时基位1ms所以timeout的单位为ms。
大家可以下载一个有道词典下载
?翻译函数,方便的很!
?
|