STM32
直播中

闷~~

9年用户 792经验值
擅长:可编程逻辑
私信 关注
[问答]

怎样去编写STM32F030使用引脚输入的程序代码

怎样去编写STM32F030使用引脚输入的程序代码?

回帖(1)

王锦霞

2021-10-20 10:54:36
  STM32F030 使用引脚输入
  GPIO_InitTypeDef GPIO_InitStructure;
  /* Enable the BUTTON Clock */
  RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);
  /* Configure Button pin as input */
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_9 | GPIO_Pin_10;
  GPIO_Init(GPIOA, &GPIO_InitStructure);
举报

更多回帖

发帖
×
20
完善资料,
赚取积分