[原创] STM32L4用按键点亮一个灯

xutong   2017-9-8 08:59 楼主

  1. #include "stm32l4xx_hal.h"
  2. void SystemClock_Config(void);
  3. int main()
  4. {
  5.         GPIO_InitTypeDef  GPIO_InitStruct;
  6.         HAL_Init();
  7.         SystemClock_Config();
  8.          __HAL_RCC_GPIOA_CLK_ENABLE();
  9.          __HAL_RCC_GPIOC_CLK_ENABLE();

  10.         GPIO_InitStruct.Mode  = GPIO_MODE_OUTPUT_PP;
  11.   GPIO_InitStruct.Pull  = GPIO_PULLUP;
  12.   GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
  13.   GPIO_InitStruct.Pin = GPIO_PIN_5 ;
  14.   HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  15.        
  16.         GPIO_InitStruct.Mode = GPIO_MODE_INPUT ;
  17.   GPIO_InitStruct.Pull = GPIO_NOPULL;
  18.   GPIO_InitStruct.Pin = GPIO_PIN_13;
  19.         HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
  20.         while(1)
  21.         {
  22.                 if(HAL_GPIO_ReadPin(GPIOC,GPIO_PIN_13))
  23.                 {
  24.                         HAL_GPIO_WritePin(GPIOA,GPIO_PIN_5,GPIO_PIN_RESET);
  25.                   
  26.                 }
  27.                 else
  28.                         HAL_GPIO_WritePin(GPIOA,GPIO_PIN_5,GPIO_PIN_SET);
  29.        
  30.         }
  31. }
  32. void SystemClock_Config(void)
  33. {
  34.   RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
  35.   RCC_OscInitTypeDef RCC_OscInitStruct = {0};

  36.   /* MSI is enabled after System reset, activate PLL with MSI as source */
  37.   RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_MSI;
  38.   RCC_OscInitStruct.MSIState = RCC_MSI_ON;
  39.   RCC_OscInitStruct.MSIClockRange = RCC_MSIRANGE_6;
  40.   RCC_OscInitStruct.MSICalibrationValue = RCC_MSICALIBRATION_DEFAULT;
  41.   RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  42.   RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_MSI;
  43.   RCC_OscInitStruct.PLL.PLLM = 1;
  44.   RCC_OscInitStruct.PLL.PLLN = 40;
  45.   RCC_OscInitStruct.PLL.PLLR = 2;
  46.   RCC_OscInitStruct.PLL.PLLP = 7;
  47.   RCC_OscInitStruct.PLL.PLLQ = 4;
  48.   if(HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  49.   {
  50.     /* Initialization Error */
  51.     while(1);
  52.   }
  53.   
  54.   /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2
  55.      clocks dividers */
  56.   RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
  57.   RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  58.   RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  59.   RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;  
  60.   RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;  
  61.   if(HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4) != HAL_OK)
  62.   {
  63.     /* Initialization Error */
  64.     while(1);
  65.   }
  66. }


此内容由EEWORLD论坛网友xutong原创,如需转载或用于商业用途需征得作者同意并注明出处

希望做一些大家觉得好用的东西!

回复评论 (4)

https://bbs.eeworld.com.cn/thread-558354-1-1.html  先从昨日的帖子开始
希望做一些大家觉得好用的东西!
点赞  2017-9-8 09:00
else 后面的语句最好也用{}包起来,养成良好的习惯
科技改变生活
点赞  2017-9-8 09:41
引用: 眼大5子 发表于 2017-9-8 09:41
else 后面的语句最好也用{}包起来,养成良好的习惯

ok
希望做一些大家觉得好用的东西!
点赞  2017-9-8 10:03
TIM图片20170908124228.png
TIM图片20170908124250.png
keil注释复制出来是乱码的解决方法
希望做一些大家觉得好用的东西!
点赞  2017-9-8 12:43
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复