本帖最后由 cwei85 于 2010-6-12 12:01 编辑
昨天调试的时候发现,在把PB7设置为推挽输出的时候,会影响PORTA的ADC采集,导致ADC引脚上始终为0V(本身应该有1.5V);将其改为浮空输入时,adc正常。
具体配置如下:
//ADC channel0-7
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0 | GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 |
GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_6 |GPIO_Pin_7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 ;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
看来下PB7口可以配置为I2C的SDA,不晓得是不是这样原因导致起不能够配置为推挽输出? |