汇集网友智慧,解决技术难题
引脚 复用 普通IO ST RS 寄存器
赞0
评论
2024-12-27
2024-12-18
2024-12-05
2024-12-02
点击图片添加到编辑器内容中
点击文件名将附件添加到文章中
提交
tyw
315个答案
天意无罪
284个答案
xch
206个答案
jjjyufan
197个答案
coody
187个答案
LcwSwust
146个答案
chunyang
135个答案
tpgf
111个答案
赞0
GPIO_StructInit(&GPIO_InitStruct);
SYS_WR_PROTECT = 0x7a83;
SYS_IO_CFG |= BIT5;//bit5置1 RST功能:SYS_IO_CFG.bit5 = 0 GPIO功能:SYS_IO_CFG.bit5 = 1
SYS_WR_PROTECT = 0;
#if 0
//IN
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN; /*GPIO输入模式*/
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_2; /*Pin2*/
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP; /*上拉功能*/ //上拉100kΩ
GPIO_Init(GPIO0, &GPIO_InitStruct);
//如果要使用外部中断 可加入 EXTI_Trigger_Config()
#else
//OUT
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT; /*GPIO输出模式*/
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_2; /*Pin2*/
GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_UP; /*上拉功能*/ //上拉100kΩ
GPIO_Init(GPIO0, &GPIO_InitStruct);
#endif
评论
2024-12-27
赞0
评论
2024-12-18
赞0
评论
2024-12-18
赞0
评论
2024-12-05
赞0
评论
2024-12-05
赞0
评论
2024-12-05
赞0
评论
2024-12-05
赞0
评论
2024-12-05
赞0
评论
2024-12-02
您需要登录后才可以回复 登录 | 注册