uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) { uint8_t bitstatus = 0x00; /* Check the parameters */ assert_param(IS_GPIO_ALL_PERIPH(GPIOx)); assert_param(IS_GET_GPIO_PIN(GPIO_Pin)); if ((GPIOx->IDR & GPIO_Pin) != (uint32_t)Bit_RESET) { bit...
读取某个GPIO的输出电平是哪个函数?A.uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef*GPIOx,uint16_t GPIO_Pin)B.uint16_t GPIO_ReadInputData(GPIO_TypeDef*GPIOx)C.uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef*GPIOx,uint16_t GPIO_Pin)D.uint16_t GPIO_ReadOutputData(GPIO_TypeDef*GPIOx) 搜索 题目 ...
读取GPIO输入电平的函数是()A.uint8_t GPIO_ReadOutputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);B.uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx);C.uint8_t GPIO_ReadInputDataBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin);D.uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx); 搜索...
void GPIO_SetBits(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin); 函数的含义是A.GPIO初始化B.输出高电平C.