作者wang3166 (3166)
看板ASM
标题Re: [问题] STM32F4 AT command
时间Wed Feb 21 15:04:29 2018
GPIO_Write(GPIOF,GPIO_Pin_10); 这边语法有问题
GPIO_Pin_10 这边是个位址
void GPIO_Write(GPIO_TypeDef* GPIOx, uint16_t PortVal)
应该要这样 GPIO_Write(GPIOF,1 << 10);但个人不建议用这个函式
GPIO_ResetBits();GPIO_SetBits();这二个参考看看唷
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 114.24.28.93
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/ASM/M.1519196672.A.769.html