uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx);读取当前所有端口电平 uint8_t GPIO_ReadOutputData...
uint16_tGPIO_ReadInputData(GPIO_TypeDef* GPIOx) 功能:读取指定GPIO端口的输入电平,针对Port 注释:通过访问GPIOx_IDR(端口输入数据寄存器)可获知某一端口的输入电平 输入参数1:GPIOx:x可以为A,B,C,D等。用来选择GPIO外设 例: uint16_t ReadValue; ReadValue = GPIO_ReadInputData(GPIOC); uint16_tGPIO_Read...
参考答案: GPIO_ReadInputData(GPIOC); 复制 纠错举一反三 广告能够增加商品的需求量,但不会影响供给量。 A. 正确 B. 错误 查看完整题目与答案 电力市场中交易风险类型包括哪些?() A. 履行合同风险 B. 流动性风险 C. 操作风险 D. 市场力相关风险 E. 市场合规意识淡薄 查看完整题目与答案 ...
GPIO_ReadInputDataBit读取指定端口管脚的输入; GPIO_ReadInputData读取指定的 GPIO 端口输入; GPIO_ReadOutputDataBit读取指定端口管脚的输出; GPIO_ReadOutputData读取指定的 GPIO 端口输出; GPIO_SetBits 设置指定的数据端口位; GPIO_ResetBits 清除指定的数据端口位; GPIO_WriteBit 设置或者清除指定的数据端口位; GPIO_...
uint16_tGPIO_ReadInputData(GPIO_TypeDef* GPIOx); GPIOx:可以是A、B、C、D、E、F或G端口之一。 返回值是一个16位的无符号整数,表示指定GPIO端口上各个引脚的电平状态(1为高电平,0为低电平)。 使用方法:读取GPIOB端口的输入数据,保存在16位变量input_data中: ...
百度试题 结果1 题目下面对函数GPIO_ReadInputData描述正确的是() A. 无返回值 B. 用于读取指定的GPIO端口输入 C. 有输出参数 相关知识点: 试题来源: 解析 B 反馈 收藏
6.uint16_t GPIO_ReadInputData(GPIO_TypeDef* GPIOx) 返回输入数据寄存器的16位数据(高16位保留),用来读取输入模式下一组IO口电平状态 1. 7.uint16_t GPIO_ReadOutputData(GPIO_TypeDef* GPIOx) 返回输出数据寄存器的16位数据(高16位保留),用来读取输出模式下一组IO口电平状态 ...
7、GPIO_ReadInputData(GPIOx) //读取GPIO输入寄存器值 u8 port_value; port_value = GPIO_ReadInputData(GPIOA); 8、GPIO_ReadOutputData(GPIOx) //读取GPIO输出寄存器值 u8 port_value; port_value = GPIO_ReadOutputData(GPIOA); 9、GPIO_ReadInputPin(GPIOx,GPIO_Pin) //读取GPIO输入寄存器特定引脚位的值...
函数名GPIO_ReadInputData 函数原形u16GPIO_ReadInputData(GPIO_TypeDef*GPIOx) 功能描述读取指定的GPIO端口输入 输入参数GPIOx:x可以是A,B,C,D或者E,来选择GPIO外设 输出参数无 返回值GPIO输入数据端口值 先决条件无 被调用函数无 例:/*Read the GPIOC input data port and store it inReadValuevariable*/ u16Re...
ReadValue = GPIO_ReadInputData(GPIOC); 函数GPIO_ReadOutputDataBit 功能描述:读取指定端口管脚的输出 例: u8 ReadValue; ReadValue = GPIO_ReadOutputDataBit(GPIOB, GPIO_Pin_7); 函数GPIO_ReadOutputData 功能描述:读取指定的GPIO端口输出 例: u16 ReadValue; ReadValue = GPIO_ReadOutputData(GPIOC); 函数GP...