main.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /**
  2. ******************************************************************************
  3. * @file : main.c
  4. * @brief : Main program body
  5. ******************************************************************************
  6. ** This notice applies to any and all portions of this file
  7. * that are not between comment pairs USER CODE BEGIN and
  8. * USER CODE END. Other portions of this file, whether
  9. * inserted by the user or by software development tools
  10. * are owned by their respective copyright owners.
  11. *
  12. * COPYRIGHT(c) 2019 STMicroelectronics
  13. *
  14. * Redistribution and use in source and binary forms, with or without modification,
  15. * are permitted provided that the following conditions are met:
  16. * 1. Redistributions of source code must retain the above copyright notice,
  17. * this list of conditions and the following disclaimer.
  18. * 2. Redistributions in binary form must reproduce the above copyright notice,
  19. * this list of conditions and the following disclaimer in the documentation
  20. * and/or other materials provided with the distribution.
  21. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  22. * may be used to endorse or promote products derived from this software
  23. * without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  26. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  28. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  29. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  31. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  32. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  33. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  34. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35. *
  36. ******************************************************************************
  37. */
  38. /* Includes ------------------------------------------------------------------*/
  39. #include "main.h"
  40. #include "stm32l0xx_hal.h"
  41. /* USER CODE BEGIN Includes */
  42. /* USER CODE END Includes */
  43. /* Private variables ---------------------------------------------------------*/
  44. UART_HandleTypeDef huart2;
  45. /* USER CODE BEGIN PV */
  46. /* Private variables ---------------------------------------------------------*/
  47. /* USER CODE END PV */
  48. /* Private function prototypes -----------------------------------------------*/
  49. void SystemClock_Config(void);
  50. static void MX_GPIO_Init(void);
  51. static void MX_USART2_UART_Init(void);
  52. /* USER CODE BEGIN PFP */
  53. /* Private function prototypes -----------------------------------------------*/
  54. /* USER CODE END PFP */
  55. /* USER CODE BEGIN 0 */
  56. /* USER CODE END 0 */
  57. /**
  58. * @brief The application entry point.
  59. *
  60. * @retval None
  61. */
  62. int main(void)
  63. {
  64. /* USER CODE BEGIN 1 */
  65. /* USER CODE END 1 */
  66. /* MCU Configuration----------------------------------------------------------*/
  67. /* Reset of all peripherals, Initializes the Flash interface and the Systick. */
  68. HAL_Init();
  69. /* USER CODE BEGIN Init */
  70. /* USER CODE END Init */
  71. /* Configure the system clock */
  72. SystemClock_Config();
  73. /* USER CODE BEGIN SysInit */
  74. /* USER CODE END SysInit */
  75. /* Initialize all configured peripherals */
  76. MX_GPIO_Init();
  77. MX_USART2_UART_Init();
  78. /* USER CODE BEGIN 2 */
  79. /* USER CODE END 2 */
  80. /* Infinite loop */
  81. /* USER CODE BEGIN WHILE */
  82. while (1)
  83. {
  84. /* USER CODE END WHILE */
  85. /* USER CODE BEGIN 3 */
  86. }
  87. /* USER CODE END 3 */
  88. }
  89. /**
  90. * @brief System Clock Configuration
  91. * @retval None
  92. */
  93. void SystemClock_Config(void)
  94. {
  95. RCC_OscInitTypeDef RCC_OscInitStruct;
  96. RCC_ClkInitTypeDef RCC_ClkInitStruct;
  97. RCC_PeriphCLKInitTypeDef PeriphClkInit;
  98. /**Configure the main internal regulator output voltage
  99. */
  100. __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
  101. /**Initializes the CPU, AHB and APB busses clocks
  102. */
  103. RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
  104. RCC_OscInitStruct.HSIState = RCC_HSI_ON;
  105. RCC_OscInitStruct.HSICalibrationValue = 16;
  106. RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
  107. RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI;
  108. RCC_OscInitStruct.PLL.PLLMUL = RCC_PLLMUL_4;
  109. RCC_OscInitStruct.PLL.PLLDIV = RCC_PLLDIV_2;
  110. if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
  111. {
  112. _Error_Handler(__FILE__, __LINE__);
  113. }
  114. /**Initializes the CPU, AHB and APB busses clocks
  115. */
  116. RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
  117. |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
  118. RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
  119. RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
  120. RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
  121. RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
  122. if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_1) != HAL_OK)
  123. {
  124. _Error_Handler(__FILE__, __LINE__);
  125. }
  126. PeriphClkInit.PeriphClockSelection = RCC_PERIPHCLK_USART2;
  127. PeriphClkInit.Usart2ClockSelection = RCC_USART2CLKSOURCE_PCLK1;
  128. if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInit) != HAL_OK)
  129. {
  130. _Error_Handler(__FILE__, __LINE__);
  131. }
  132. /**Configure the Systick interrupt time
  133. */
  134. HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
  135. /**Configure the Systick
  136. */
  137. HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
  138. /* SysTick_IRQn interrupt configuration */
  139. HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
  140. }
  141. /* USART2 init function */
  142. static void MX_USART2_UART_Init(void)
  143. {
  144. huart2.Instance = USART2;
  145. huart2.Init.BaudRate = 115200;
  146. huart2.Init.WordLength = UART_WORDLENGTH_8B;
  147. huart2.Init.StopBits = UART_STOPBITS_1;
  148. huart2.Init.Parity = UART_PARITY_NONE;
  149. huart2.Init.Mode = UART_MODE_TX_RX;
  150. huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE;
  151. huart2.Init.OverSampling = UART_OVERSAMPLING_16;
  152. huart2.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
  153. huart2.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
  154. if (HAL_UART_Init(&huart2) != HAL_OK)
  155. {
  156. _Error_Handler(__FILE__, __LINE__);
  157. }
  158. }
  159. /** Configure pins as
  160. * Analog
  161. * Input
  162. * Output
  163. * EVENT_OUT
  164. * EXTI
  165. */
  166. static void MX_GPIO_Init(void)
  167. {
  168. GPIO_InitTypeDef GPIO_InitStruct;
  169. /* GPIO Ports Clock Enable */
  170. __HAL_RCC_GPIOC_CLK_ENABLE();
  171. __HAL_RCC_GPIOH_CLK_ENABLE();
  172. __HAL_RCC_GPIOA_CLK_ENABLE();
  173. /*Configure GPIO pin Output Level */
  174. HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, GPIO_PIN_RESET);
  175. /*Configure GPIO pin : B1_Pin */
  176. GPIO_InitStruct.Pin = B1_Pin;
  177. GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING;
  178. GPIO_InitStruct.Pull = GPIO_NOPULL;
  179. HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct);
  180. /*Configure GPIO pin : LD2_Pin */
  181. GPIO_InitStruct.Pin = LD2_Pin;
  182. GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
  183. GPIO_InitStruct.Pull = GPIO_NOPULL;
  184. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
  185. HAL_GPIO_Init(LD2_GPIO_Port, &GPIO_InitStruct);
  186. }
  187. /* USER CODE BEGIN 4 */
  188. /* USER CODE END 4 */
  189. /**
  190. * @brief This function is executed in case of error occurrence.
  191. * @param file: The file name as string.
  192. * @param line: The line in file as a number.
  193. * @retval None
  194. */
  195. void _Error_Handler(char *file, int line)
  196. {
  197. /* USER CODE BEGIN Error_Handler_Debug */
  198. /* User can add his own implementation to report the HAL error return state */
  199. while(1)
  200. {
  201. }
  202. /* USER CODE END Error_Handler_Debug */
  203. }
  204. #ifdef USE_FULL_ASSERT
  205. /**
  206. * @brief Reports the name of the source file and the source line number
  207. * where the assert_param error has occurred.
  208. * @param file: pointer to the source file name
  209. * @param line: assert_param error line source number
  210. * @retval None
  211. */
  212. void assert_failed(uint8_t* file, uint32_t line)
  213. {
  214. /* USER CODE BEGIN 6 */
  215. /* User can add his own implementation to report the file name and line number,
  216. tex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
  217. /* USER CODE END 6 */
  218. }
  219. #endif /* USE_FULL_ASSERT */
  220. /**
  221. * @}
  222. */
  223. /**
  224. * @}
  225. */
  226. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/