stm32f1xx_hal_msp.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. /* USER CODE BEGIN Header */
  2. /**
  3. ******************************************************************************
  4. * File Name : stm32f1xx_hal_msp.c
  5. * Description : This file provides code for the MSP Initialization
  6. * and de-Initialization codes.
  7. ******************************************************************************
  8. ** This notice applies to any and all portions of this file
  9. * that are not between comment pairs USER CODE BEGIN and
  10. * USER CODE END. Other portions of this file, whether
  11. * inserted by the user or by software development tools
  12. * are owned by their respective copyright owners.
  13. *
  14. * COPYRIGHT(c) 2019 STMicroelectronics
  15. *
  16. * Redistribution and use in source and binary forms, with or without modification,
  17. * are permitted provided that the following conditions are met:
  18. * 1. Redistributions of source code must retain the above copyright notice,
  19. * this list of conditions and the following disclaimer.
  20. * 2. Redistributions in binary form must reproduce the above copyright notice,
  21. * this list of conditions and the following disclaimer in the documentation
  22. * and/or other materials provided with the distribution.
  23. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  24. * may be used to endorse or promote products derived from this software
  25. * without specific prior written permission.
  26. *
  27. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  28. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  30. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  31. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  33. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  34. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  35. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  36. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  37. *
  38. ******************************************************************************
  39. */
  40. /* USER CODE END Header */
  41. /* Includes ------------------------------------------------------------------*/
  42. #include "main.h"
  43. /* USER CODE BEGIN Includes */
  44. /* USER CODE END Includes */
  45. /* Private typedef -----------------------------------------------------------*/
  46. /* USER CODE BEGIN TD */
  47. /* USER CODE END TD */
  48. /* Private define ------------------------------------------------------------*/
  49. /* USER CODE BEGIN Define */
  50. /* USER CODE END Define */
  51. /* Private macro -------------------------------------------------------------*/
  52. /* USER CODE BEGIN Macro */
  53. /* USER CODE END Macro */
  54. /* Private variables ---------------------------------------------------------*/
  55. /* USER CODE BEGIN PV */
  56. /* USER CODE END PV */
  57. /* Private function prototypes -----------------------------------------------*/
  58. /* USER CODE BEGIN PFP */
  59. /* USER CODE END PFP */
  60. /* External functions --------------------------------------------------------*/
  61. /* USER CODE BEGIN ExternalFunctions */
  62. /* USER CODE END ExternalFunctions */
  63. /* USER CODE BEGIN 0 */
  64. /* USER CODE END 0 */
  65. /**
  66. * Initializes the Global MSP.
  67. */
  68. void HAL_MspInit(void)
  69. {
  70. /* USER CODE BEGIN MspInit 0 */
  71. /* USER CODE END MspInit 0 */
  72. __HAL_RCC_AFIO_CLK_ENABLE();
  73. __HAL_RCC_PWR_CLK_ENABLE();
  74. /* System interrupt init*/
  75. /**NOJTAG: JTAG-DP Disabled and SW-DP Enabled
  76. */
  77. __HAL_AFIO_REMAP_SWJ_NOJTAG();
  78. /* USER CODE BEGIN MspInit 1 */
  79. /* USER CODE END MspInit 1 */
  80. }
  81. /**
  82. * @brief ADC MSP Initialization
  83. * This function configures the hardware resources used in this example
  84. * @param hadc: ADC handle pointer
  85. * @retval None
  86. */
  87. void HAL_ADC_MspInit(ADC_HandleTypeDef* hadc)
  88. {
  89. GPIO_InitTypeDef GPIO_InitStruct = {0};
  90. if(hadc->Instance==ADC1)
  91. {
  92. /* USER CODE BEGIN ADC1_MspInit 0 */
  93. /* USER CODE END ADC1_MspInit 0 */
  94. /* Peripheral clock enable */
  95. __HAL_RCC_ADC1_CLK_ENABLE();
  96. __HAL_RCC_GPIOC_CLK_ENABLE();
  97. /**ADC1 GPIO Configuration
  98. PC0 ------> ADC1_IN10
  99. PC1 ------> ADC1_IN11
  100. */
  101. GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1;
  102. GPIO_InitStruct.Mode = GPIO_MODE_ANALOG;
  103. HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
  104. /* USER CODE BEGIN ADC1_MspInit 1 */
  105. /* USER CODE END ADC1_MspInit 1 */
  106. }
  107. }
  108. /**
  109. * @brief ADC MSP De-Initialization
  110. * This function freeze the hardware resources used in this example
  111. * @param hadc: ADC handle pointer
  112. * @retval None
  113. */
  114. void HAL_ADC_MspDeInit(ADC_HandleTypeDef* hadc)
  115. {
  116. if(hadc->Instance==ADC1)
  117. {
  118. /* USER CODE BEGIN ADC1_MspDeInit 0 */
  119. /* USER CODE END ADC1_MspDeInit 0 */
  120. /* Peripheral clock disable */
  121. __HAL_RCC_ADC1_CLK_DISABLE();
  122. /**ADC1 GPIO Configuration
  123. PC0 ------> ADC1_IN10
  124. PC1 ------> ADC1_IN11
  125. */
  126. HAL_GPIO_DeInit(GPIOC, GPIO_PIN_0|GPIO_PIN_1);
  127. /* USER CODE BEGIN ADC1_MspDeInit 1 */
  128. /* USER CODE END ADC1_MspDeInit 1 */
  129. }
  130. }
  131. /**
  132. * @brief RTC MSP Initialization
  133. * This function configures the hardware resources used in this example
  134. * @param hrtc: RTC handle pointer
  135. * @retval None
  136. */
  137. void HAL_RTC_MspInit(RTC_HandleTypeDef* hrtc)
  138. {
  139. if(hrtc->Instance==RTC)
  140. {
  141. /* USER CODE BEGIN RTC_MspInit 0 */
  142. /* USER CODE END RTC_MspInit 0 */
  143. HAL_PWR_EnableBkUpAccess();
  144. /* Enable BKP CLK enable for backup registers */
  145. __HAL_RCC_BKP_CLK_ENABLE();
  146. /* Peripheral clock enable */
  147. __HAL_RCC_RTC_ENABLE();
  148. /* USER CODE BEGIN RTC_MspInit 1 */
  149. /* USER CODE END RTC_MspInit 1 */
  150. }
  151. }
  152. /**
  153. * @brief RTC MSP De-Initialization
  154. * This function freeze the hardware resources used in this example
  155. * @param hrtc: RTC handle pointer
  156. * @retval None
  157. */
  158. void HAL_RTC_MspDeInit(RTC_HandleTypeDef* hrtc)
  159. {
  160. if(hrtc->Instance==RTC)
  161. {
  162. /* USER CODE BEGIN RTC_MspDeInit 0 */
  163. /* USER CODE END RTC_MspDeInit 0 */
  164. /* Peripheral clock disable */
  165. __HAL_RCC_RTC_DISABLE();
  166. /* USER CODE BEGIN RTC_MspDeInit 1 */
  167. /* USER CODE END RTC_MspDeInit 1 */
  168. }
  169. }
  170. /**
  171. * @brief SPI MSP Initialization
  172. * This function configures the hardware resources used in this example
  173. * @param hspi: SPI handle pointer
  174. * @retval None
  175. */
  176. void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi)
  177. {
  178. GPIO_InitTypeDef GPIO_InitStruct = {0};
  179. if(hspi->Instance==SPI1)
  180. {
  181. /* USER CODE BEGIN SPI1_MspInit 0 */
  182. /* USER CODE END SPI1_MspInit 0 */
  183. /* Peripheral clock enable */
  184. __HAL_RCC_SPI1_CLK_ENABLE();
  185. __HAL_RCC_GPIOA_CLK_ENABLE();
  186. /**SPI1 GPIO Configuration
  187. PA5 ------> SPI1_SCK
  188. PA6 ------> SPI1_MISO
  189. PA7 ------> SPI1_MOSI
  190. */
  191. GPIO_InitStruct.Pin = GPIO_PIN_5|GPIO_PIN_7;
  192. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  193. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  194. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  195. GPIO_InitStruct.Pin = GPIO_PIN_6;
  196. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  197. GPIO_InitStruct.Pull = GPIO_NOPULL;
  198. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  199. /* USER CODE BEGIN SPI1_MspInit 1 */
  200. /* USER CODE END SPI1_MspInit 1 */
  201. }
  202. else if(hspi->Instance==SPI2)
  203. {
  204. /* USER CODE BEGIN SPI2_MspInit 0 */
  205. /* USER CODE END SPI2_MspInit 0 */
  206. /* Peripheral clock enable */
  207. __HAL_RCC_SPI2_CLK_ENABLE();
  208. __HAL_RCC_GPIOB_CLK_ENABLE();
  209. /**SPI2 GPIO Configuration
  210. PB13 ------> SPI2_SCK
  211. PB14 ------> SPI2_MISO
  212. PB15 ------> SPI2_MOSI
  213. */
  214. GPIO_InitStruct.Pin = GPIO_PIN_13|GPIO_PIN_15;
  215. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  216. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  217. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  218. GPIO_InitStruct.Pin = GPIO_PIN_14;
  219. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  220. GPIO_InitStruct.Pull = GPIO_NOPULL;
  221. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  222. /* USER CODE BEGIN SPI2_MspInit 1 */
  223. /* USER CODE END SPI2_MspInit 1 */
  224. }
  225. }
  226. /**
  227. * @brief SPI MSP De-Initialization
  228. * This function freeze the hardware resources used in this example
  229. * @param hspi: SPI handle pointer
  230. * @retval None
  231. */
  232. void HAL_SPI_MspDeInit(SPI_HandleTypeDef* hspi)
  233. {
  234. if(hspi->Instance==SPI1)
  235. {
  236. /* USER CODE BEGIN SPI1_MspDeInit 0 */
  237. /* USER CODE END SPI1_MspDeInit 0 */
  238. /* Peripheral clock disable */
  239. __HAL_RCC_SPI1_CLK_DISABLE();
  240. /**SPI1 GPIO Configuration
  241. PA5 ------> SPI1_SCK
  242. PA6 ------> SPI1_MISO
  243. PA7 ------> SPI1_MOSI
  244. */
  245. HAL_GPIO_DeInit(GPIOA, GPIO_PIN_5|GPIO_PIN_6|GPIO_PIN_7);
  246. /* USER CODE BEGIN SPI1_MspDeInit 1 */
  247. /* USER CODE END SPI1_MspDeInit 1 */
  248. }
  249. else if(hspi->Instance==SPI2)
  250. {
  251. /* USER CODE BEGIN SPI2_MspDeInit 0 */
  252. /* USER CODE END SPI2_MspDeInit 0 */
  253. /* Peripheral clock disable */
  254. __HAL_RCC_SPI2_CLK_DISABLE();
  255. /**SPI2 GPIO Configuration
  256. PB13 ------> SPI2_SCK
  257. PB14 ------> SPI2_MISO
  258. PB15 ------> SPI2_MOSI
  259. */
  260. HAL_GPIO_DeInit(GPIOB, GPIO_PIN_13|GPIO_PIN_14|GPIO_PIN_15);
  261. /* USER CODE BEGIN SPI2_MspDeInit 1 */
  262. /* USER CODE END SPI2_MspDeInit 1 */
  263. }
  264. }
  265. /**
  266. * @brief UART MSP Initialization
  267. * This function configures the hardware resources used in this example
  268. * @param huart: UART handle pointer
  269. * @retval None
  270. */
  271. void HAL_UART_MspInit(UART_HandleTypeDef* huart)
  272. {
  273. GPIO_InitTypeDef GPIO_InitStruct = {0};
  274. if(huart->Instance==UART4)
  275. {
  276. /* USER CODE BEGIN UART4_MspInit 0 */
  277. /* USER CODE END UART4_MspInit 0 */
  278. /* Peripheral clock enable */
  279. __HAL_RCC_UART4_CLK_ENABLE();
  280. __HAL_RCC_GPIOC_CLK_ENABLE();
  281. /**UART4 GPIO Configuration
  282. PC10 ------> UART4_TX
  283. PC11 ------> UART4_RX
  284. */
  285. GPIO_InitStruct.Pin = GPIO_PIN_10;
  286. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  287. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  288. HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
  289. GPIO_InitStruct.Pin = GPIO_PIN_11;
  290. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  291. GPIO_InitStruct.Pull = GPIO_PULLUP;
  292. HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
  293. /* USER CODE BEGIN UART4_MspInit 1 */
  294. /* USER CODE END UART4_MspInit 1 */
  295. }
  296. else if(huart->Instance==USART1)
  297. {
  298. /* USER CODE BEGIN USART1_MspInit 0 */
  299. /* USER CODE END USART1_MspInit 0 */
  300. /* Peripheral clock enable */
  301. __HAL_RCC_USART1_CLK_ENABLE();
  302. __HAL_RCC_GPIOA_CLK_ENABLE();
  303. /**USART1 GPIO Configuration
  304. PA9 ------> USART1_TX
  305. PA10 ------> USART1_RX
  306. */
  307. GPIO_InitStruct.Pin = GPIO_PIN_9;
  308. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  309. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  310. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  311. GPIO_InitStruct.Pin = GPIO_PIN_10;
  312. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  313. GPIO_InitStruct.Pull = GPIO_PULLUP;
  314. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  315. /* USER CODE BEGIN USART1_MspInit 1 */
  316. /* USER CODE END USART1_MspInit 1 */
  317. }
  318. else if(huart->Instance==USART2)
  319. {
  320. /* USER CODE BEGIN USART2_MspInit 0 */
  321. /* USER CODE END USART2_MspInit 0 */
  322. /* Peripheral clock enable */
  323. __HAL_RCC_USART2_CLK_ENABLE();
  324. __HAL_RCC_GPIOA_CLK_ENABLE();
  325. /**USART2 GPIO Configuration
  326. PA2 ------> USART2_TX
  327. PA3 ------> USART2_RX
  328. */
  329. GPIO_InitStruct.Pin = GPIO_PIN_2;
  330. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  331. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  332. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  333. GPIO_InitStruct.Pin = GPIO_PIN_3;
  334. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  335. GPIO_InitStruct.Pull = GPIO_PULLUP;
  336. HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  337. /* USER CODE BEGIN USART2_MspInit 1 */
  338. /* USER CODE END USART2_MspInit 1 */
  339. }
  340. else if(huart->Instance==USART3)
  341. {
  342. /* USER CODE BEGIN USART3_MspInit 0 */
  343. /* USER CODE END USART3_MspInit 0 */
  344. /* Peripheral clock enable */
  345. __HAL_RCC_USART3_CLK_ENABLE();
  346. __HAL_RCC_GPIOB_CLK_ENABLE();
  347. /**USART3 GPIO Configuration
  348. PB10 ------> USART3_TX
  349. PB11 ------> USART3_RX
  350. */
  351. GPIO_InitStruct.Pin = GPIO_PIN_10;
  352. GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  353. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  354. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  355. GPIO_InitStruct.Pin = GPIO_PIN_11;
  356. GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
  357. GPIO_InitStruct.Pull = GPIO_PULLUP;
  358. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  359. /* USER CODE BEGIN USART3_MspInit 1 */
  360. /* USER CODE END USART3_MspInit 1 */
  361. }
  362. }
  363. /**
  364. * @brief UART MSP De-Initialization
  365. * This function freeze the hardware resources used in this example
  366. * @param huart: UART handle pointer
  367. * @retval None
  368. */
  369. void HAL_UART_MspDeInit(UART_HandleTypeDef* huart)
  370. {
  371. if(huart->Instance==UART4)
  372. {
  373. /* USER CODE BEGIN UART4_MspDeInit 0 */
  374. /* USER CODE END UART4_MspDeInit 0 */
  375. /* Peripheral clock disable */
  376. __HAL_RCC_UART4_CLK_DISABLE();
  377. /**UART4 GPIO Configuration
  378. PC10 ------> UART4_TX
  379. PC11 ------> UART4_RX
  380. */
  381. HAL_GPIO_DeInit(GPIOC, GPIO_PIN_10|GPIO_PIN_11);
  382. /* USER CODE BEGIN UART4_MspDeInit 1 */
  383. /* USER CODE END UART4_MspDeInit 1 */
  384. }
  385. else if(huart->Instance==USART1)
  386. {
  387. /* USER CODE BEGIN USART1_MspDeInit 0 */
  388. /* USER CODE END USART1_MspDeInit 0 */
  389. /* Peripheral clock disable */
  390. __HAL_RCC_USART1_CLK_DISABLE();
  391. /**USART1 GPIO Configuration
  392. PA9 ------> USART1_TX
  393. PA10 ------> USART1_RX
  394. */
  395. HAL_GPIO_DeInit(GPIOA, GPIO_PIN_9|GPIO_PIN_10);
  396. /* USER CODE BEGIN USART1_MspDeInit 1 */
  397. /* USER CODE END USART1_MspDeInit 1 */
  398. }
  399. else if(huart->Instance==USART2)
  400. {
  401. /* USER CODE BEGIN USART2_MspDeInit 0 */
  402. /* USER CODE END USART2_MspDeInit 0 */
  403. /* Peripheral clock disable */
  404. __HAL_RCC_USART2_CLK_DISABLE();
  405. /**USART2 GPIO Configuration
  406. PA2 ------> USART2_TX
  407. PA3 ------> USART2_RX
  408. */
  409. HAL_GPIO_DeInit(GPIOA, GPIO_PIN_2|GPIO_PIN_3);
  410. /* USER CODE BEGIN USART2_MspDeInit 1 */
  411. /* USER CODE END USART2_MspDeInit 1 */
  412. }
  413. else if(huart->Instance==USART3)
  414. {
  415. /* USER CODE BEGIN USART3_MspDeInit 0 */
  416. /* USER CODE END USART3_MspDeInit 0 */
  417. /* Peripheral clock disable */
  418. __HAL_RCC_USART3_CLK_DISABLE();
  419. /**USART3 GPIO Configuration
  420. PB10 ------> USART3_TX
  421. PB11 ------> USART3_RX
  422. */
  423. HAL_GPIO_DeInit(GPIOB, GPIO_PIN_10|GPIO_PIN_11);
  424. /* USER CODE BEGIN USART3_MspDeInit 1 */
  425. /* USER CODE END USART3_MspDeInit 1 */
  426. }
  427. }
  428. /* USER CODE BEGIN 1 */
  429. /* USER CODE END 1 */
  430. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/