作者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/m.aspx?n=bbs/ASM/M.1519196672.A.769.html