我在X035的EVT中, 發(fā)現(xiàn)初始化配置USB時(shí), USB的GPIO有兩種配置模式:
????GPIO_InitStructure.GPIO_Pin?=?GPIO_Pin_16?|?GPIO_Pin_17; ????GPIO_InitStructure.GPIO_Mode?=?GPIO_Mode_IPU; ????GPIO_Init(?GPIOC,?&GPIO_InitStructure?);
和
????GPIO_InitStructure.GPIO_Pin?=?GPIO_Pin_16; ????GPIO_InitStructure.GPIO_Mode?=?GPIO_Mode_IN_FLOATING; ????GPIO_Init(?GPIOC,?&GPIO_InitStructure?); ????GPIO_InitStructure.GPIO_Pin?=?GPIO_Pin_17; ????GPIO_InitStructure.GPIO_Mode?=?GPIO_Mode_IPU; ????GPIO_Init(?GPIOC,?&GPIO_InitStructure?);
區(qū)別是USB DM這個(gè)管腳, 一種是配置成上拉輸入, 一種是浮空輸入.
請(qǐng)問這兩種配置模式有什么使用上的區(qū)別嗎?