打印
[STM32F4]

【STM32F469I试用】+试运行点亮LED灯

[复制链接]
521|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
caoqing|  楼主 | 2015-12-18 18:33 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
int main(void)
{
  HAL_Init();

  /* Configure the system clock to 180 MHz */
  SystemClock_Config();
  
  /* -1- Enable GPIO Clock (to be able to program the configuration registers) */
  __HAL_RCC_GPIOK_CLK_ENABLE();

  /* -2- Configure IO in output push-pull mode to drive external LEDs */
  GPIO_InitStruct.Mode  = GPIO_MODE_OUTPUT_PP;
  GPIO_InitStruct.Pull  = GPIO_PULLUP;
  GPIO_InitStruct.Speed = GPIO_SPEED_HIGH;

  GPIO_InitStruct.Pin = GPIO_PIN_3;
  HAL_GPIO_Init(GPIOK, &GPIO_InitStruct);

  /* -3- Toggle IO in an infinite loop */
  while (1)
  {
    HAL_GPIO_TogglePin(GPIOK, GPIO_PIN_3);
    /* Insert delay 100 ms */
    HAL_Delay(100);
  }
}

IMG_20151218_183108.jpg (75.42 KB )

IMG_20151218_183108.jpg
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

76

主题

479

帖子

6

粉丝