程式中开启ADC3 Channel5、Channel6作ADC输入脚
脚位设定如下
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 | GPIO_Pin_8;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AN;
GPIO_Init(GPIOF, &GPIO_InitStructure);
ADC脚位接上电压实测后发现以下问题
当ADC3_IN5(PF7)上电压上升时,用电錶量测ADC3_IN5(PF8)(空接)时
ADC3_IN5(PF8)(空接)电压也上升。
当ADC3_IN5(PF7)上电压下降时,用电錶量测ADC3_IN5(PF8)(空接)时
ADC3_IN5(PF8)(空接)电压也下降。
请问高手们 为何会发生这问题(已用电錶量测2脚间没短路)? |