#if defined
....
#elif defined
.... 的用法是什么意思
原代码如下:
#if defined (USE_STM3210C_EVAL)
GPIO_InitTypeDef GPIO_InitStructure;
EXTI_InitTypeDef EXTI_InitStructure;
....
#elif defined (USE_STM3210B_EVAL)
GPIO_InitTypeDef GPIO_InitStructure;
EXTI_InitTypeDef EXTI_InitStructure;
... |