STM32函数GPIO_WriteBit问题

这个函数可以向多个端口写入数据吗?比如:GPIO_WriteBit(GPIOD,GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2,0X11);可以这样写么... 这个函数可以向多个端口写入数据吗?
比如:
GPIO_WriteBit(GPIOD,GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2,0X11);
可以这样写么?
展开
 我来答
eventime398
推荐于2017-09-25 · TA获得超过129个赞
知道答主
回答量:15
采纳率:0%
帮助的人:12万
展开全部
看stm32 library的资料应该这样写的:
GPIO_WriteBit(GPIOD,GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2,Bit_SET);

这是函数的说明
void GPIO_WriteBit ( GPIO_TypeDef * GPIOx,
uint16_t GPIO_Pin,
BitAction BitVal
)
Parameters:
GPIOx,: where x can be (A..G) to select the GPIO peripheral.
GPIO_Pin,: specifies the port bit to be written. This parameter can be one of GPIO_Pin_x where x can be (0..15).
BitVal,: specifies the value to be written to the selected bit. This parameter can be one of the BitAction enum values:

Bit_RESET: to clear the port pin
Bit_SET: to set the port pin

在stm32f10x_gpio.h
108行
typedef enum
{ Bit_RESET = 0,
Bit_SET
}BitAction;
stm32f10x_gpio.c里的原函数
void GPIO_WriteBit(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, BitAction BitVal)
{
/* Check the parameters */
assert_param(IS_GPIO_ALL_PERIPH(GPIOx));
assert_param(IS_GET_GPIO_PIN(GPIO_Pin));
assert_param(IS_GPIO_BIT_ACTION(BitVal));

if (BitVal != Bit_RESET)
{
GPIOx->BSRR = GPIO_Pin;
}
else
{
GPIOx->BRR = GPIO_Pin;
}
}
更多追问追答
追问
所以结论是只能同时写入1或者同时写入0?
追答
不是啊,GPIO_WriteBit(GPIOD,GPIO_Pin_0|GPIO_Pin_1|GPIO_Pin_2,Bit_SET);
是对GPIO_Pin_0,GPIO_Pin_1,GPIO_Pin_2写入1,其他位不变
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
TableDI
2024-07-18 广告
VLOOKUP是Excel中用于垂直查找的函数,其基本用法包括四个参数:1. 查找值:即在数据表首列中需要搜索的值。2. 数据表:包含查找值的单元格区域或数组。3. 返回值所在列数:指定返回查询区域中第几列的值。4. 查找方式:选择精确匹配... 点击进入详情页
本回答由TableDI提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式