【发布时间】:2018-10-08 20:53:05
【问题描述】:
在阅读 STM32 示例代码时,我看到大量以 uw 开头的变量。例如:
static __IO uint32_t uwLsiFreq = 0;
__IO uint32_t uwCaptureNumber = 0;
__IO uint32_t uwPeriodValue = 0;
__IO uint32_t uwMeasurementDone = 0;
每件事背后都有一个意义或一个故事。 uw 在这里是什么意思?
示例来源:STM32Cube_FW_F2_V1.7.0/Projects/STM32F207ZG-Nucleo/Examples/IWDG/IWDG_Example/Src/main.c.
Download link --> 点击“STM32CubeF2”旁边的“获取软件”按钮。
【问题讨论】:
-
可能:“uw”代表某种Hungarian notation中的“无符号字”
标签: stm32 freertos hungarian-notation