stm32f3xx_hal.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. /**
  2. ******************************************************************************
  3. * @file stm32f3xx_hal.c
  4. * @author MCD Application Team
  5. * @brief HAL module driver.
  6. * This is the common part of the HAL initialization
  7. *
  8. @verbatim
  9. ==============================================================================
  10. ##### How to use this driver #####
  11. ==============================================================================
  12. [..]
  13. The common HAL driver contains a set of generic and common APIs that can be
  14. used by the PPP peripheral drivers and the user to start using the HAL.
  15. [..]
  16. The HAL contains two APIs categories:
  17. (+) HAL Initialization and de-initialization functions
  18. (+) HAL Control functions
  19. @endverbatim
  20. ******************************************************************************
  21. * @attention
  22. *
  23. * <h2><center>&copy; Copyright (c) 2016 STMicroelectronics.
  24. * All rights reserved.</center></h2>
  25. *
  26. * This software component is licensed by ST under BSD 3-Clause license,
  27. * the "License"; You may not use this file except in compliance with the
  28. * License. You may obtain a copy of the License at:
  29. * opensource.org/licenses/BSD-3-Clause
  30. *
  31. ******************************************************************************
  32. */
  33. /* Includes ------------------------------------------------------------------*/
  34. #include "stm32f3xx_hal.h"
  35. /** @addtogroup STM32F3xx_HAL_Driver
  36. * @{
  37. */
  38. /** @defgroup HAL HAL
  39. * @brief HAL module driver.
  40. * @{
  41. */
  42. #ifdef HAL_MODULE_ENABLED
  43. /* Private typedef -----------------------------------------------------------*/
  44. /* Private define ------------------------------------------------------------*/
  45. /** @defgroup HAL_Private Constants
  46. * @{
  47. */
  48. /**
  49. * @brief STM32F3xx HAL Driver version number V1.5.6
  50. */
  51. #define __STM32F3xx_HAL_VERSION_MAIN (0x01U) /*!< [31:24] main version */
  52. #define __STM32F3xx_HAL_VERSION_SUB1 (0x05U) /*!< [23:16] sub1 version */
  53. #define __STM32F3xx_HAL_VERSION_SUB2 (0x06U) /*!< [15:8] sub2 version */
  54. #define __STM32F3xx_HAL_VERSION_RC (0x00U) /*!< [7:0] release candidate */
  55. #define __STM32F3xx_HAL_VERSION ((__STM32F3xx_HAL_VERSION_MAIN << 24U)\
  56. |(__STM32F3xx_HAL_VERSION_SUB1 << 16U)\
  57. |(__STM32F3xx_HAL_VERSION_SUB2 << 8U )\
  58. |(__STM32F3xx_HAL_VERSION_RC))
  59. #define IDCODE_DEVID_MASK (0x00000FFFU)
  60. /**
  61. * @}
  62. */
  63. /* Private macro -------------------------------------------------------------*/
  64. /* Exported variables --------------------------------------------------------*/
  65. /** @defgroup HAL_Exported_Variables HAL Exported Variables
  66. * @{
  67. */
  68. __IO uint32_t uwTick;
  69. uint32_t uwTickPrio = (1UL << __NVIC_PRIO_BITS); /* Invalid PRIO */
  70. HAL_TickFreqTypeDef uwTickFreq = HAL_TICK_FREQ_DEFAULT; /* 1KHz */
  71. /**
  72. * @}
  73. */
  74. /* Private function prototypes -----------------------------------------------*/
  75. /* Exported functions ---------------------------------------------------------*/
  76. /** @defgroup HAL_Exported_Functions HAL Exported Functions
  77. * @{
  78. */
  79. /** @defgroup HAL_Exported_Functions_Group1 Initialization and de-initialization Functions
  80. * @brief Initialization and de-initialization functions
  81. *
  82. @verbatim
  83. ===============================================================================
  84. ##### Initialization and de-initialization functions #####
  85. ===============================================================================
  86. [..] This section provides functions allowing to:
  87. (+) Initializes the Flash interface, the NVIC allocation and initial clock
  88. configuration. It initializes the systick also when timeout is needed
  89. and the backup domain when enabled.
  90. (+) de-Initializes common part of the HAL.
  91. (+) Configure The time base source to have 1ms time base with a dedicated
  92. Tick interrupt priority.
  93. (++) SysTick timer is used by default as source of time base, but user
  94. can eventually implement his proper time base source (a general purpose
  95. timer for example or other time source), keeping in mind that Time base
  96. duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and
  97. handled in milliseconds basis.
  98. (++) Time base configuration function (HAL_InitTick ()) is called automatically
  99. at the beginning of the program after reset by HAL_Init() or at any time
  100. when clock is configured, by HAL_RCC_ClockConfig().
  101. (++) Source of time base is configured to generate interrupts at regular
  102. time intervals. Care must be taken if HAL_Delay() is called from a
  103. peripheral ISR process, the Tick interrupt line must have higher priority
  104. (numerically lower) than the peripheral interrupt. Otherwise the caller
  105. ISR process will be blocked.
  106. (++) functions affecting time base configurations are declared as __Weak
  107. to make override possible in case of other implementations in user file.
  108. @endverbatim
  109. * @{
  110. */
  111. /**
  112. * @brief This function configures the Flash prefetch,
  113. * Configures time base source, NVIC and Low level hardware
  114. * @note This function is called at the beginning of program after reset and before
  115. * the clock configuration
  116. *
  117. * @note The Systick configuration is based on HSI clock, as HSI is the clock
  118. * used after a system Reset and the NVIC configuration is set to Priority group 4
  119. *
  120. * @note The time base configuration is based on MSI clock when exting from Reset.
  121. * Once done, time base tick start incrementing.
  122. * In the default implementation,Systick is used as source of time base.
  123. * The tick variable is incremented each 1ms in its ISR.
  124. * @retval HAL status
  125. */
  126. HAL_StatusTypeDef HAL_Init(void)
  127. {
  128. /* Configure Flash prefetch */
  129. #if (PREFETCH_ENABLE != 0U)
  130. __HAL_FLASH_PREFETCH_BUFFER_ENABLE();
  131. #endif /* PREFETCH_ENABLE */
  132. /* Set Interrupt Group Priority */
  133. HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);
  134. /* Enable systick and configure 1ms tick (default clock after Reset is HSI) */
  135. HAL_InitTick(TICK_INT_PRIORITY);
  136. /* Init the low level hardware */
  137. HAL_MspInit();
  138. /* Return function status */
  139. return HAL_OK;
  140. }
  141. /**
  142. * @brief This function de-Initializes common part of the HAL and stops the systick.
  143. * @note This function is optional.
  144. * @retval HAL status
  145. */
  146. HAL_StatusTypeDef HAL_DeInit(void)
  147. {
  148. /* Reset of all peripherals */
  149. //__HAL_RCC_APB1_FORCE_RESET();
  150. //__HAL_RCC_APB1_RELEASE_RESET();
  151. //__HAL_RCC_APB2_FORCE_RESET();
  152. //__HAL_RCC_APB2_RELEASE_RESET();
  153. //__HAL_RCC_AHB_FORCE_RESET();
  154. //__HAL_RCC_AHB_RELEASE_RESET();
  155. /* De-Init the low level hardware */
  156. HAL_MspDeInit();
  157. /* Return function status */
  158. return HAL_OK;
  159. }
  160. /**
  161. * @brief Initialize the MSP.
  162. * @retval None
  163. */
  164. __weak void HAL_MspInit(void)
  165. {
  166. /* NOTE : This function should not be modified, when the callback is needed,
  167. the HAL_MspInit could be implemented in the user file
  168. */
  169. }
  170. /**
  171. * @brief DeInitialize the MSP.
  172. * @retval None
  173. */
  174. __weak void HAL_MspDeInit(void)
  175. {
  176. /* NOTE : This function should not be modified, when the callback is needed,
  177. the HAL_MspDeInit could be implemented in the user file
  178. */
  179. }
  180. /**
  181. * @brief This function configures the source of the time base.
  182. * The time source is configured to have 1ms time base with a dedicated
  183. * Tick interrupt priority.
  184. * @note This function is called automatically at the beginning of program after
  185. * reset by HAL_Init() or at any time when clock is reconfigured by HAL_RCC_ClockConfig().
  186. * @note In the default implementation , SysTick timer is the source of time base.
  187. * It is used to generate interrupts at regular time intervals.
  188. * Care must be taken if HAL_Delay() is called from a peripheral ISR process,
  189. * The SysTick interrupt must have higher priority (numerically lower)
  190. * than the peripheral interrupt. Otherwise the caller ISR process will be blocked.
  191. * The function is declared as __Weak to be overwritten in case of other
  192. * implementation in user file.
  193. * @param TickPriority Tick interrupt priority.
  194. * @retval HAL status
  195. */
  196. __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority)
  197. {
  198. /* Configure the SysTick to have interrupt in 1ms time basis*/
  199. if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U)
  200. {
  201. return HAL_ERROR;
  202. }
  203. /* Configure the SysTick IRQ priority */
  204. if (TickPriority < (1UL << __NVIC_PRIO_BITS))
  205. {
  206. HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U);
  207. uwTickPrio = TickPriority;
  208. }
  209. else
  210. {
  211. return HAL_ERROR;
  212. }
  213. /* Return function status */
  214. return HAL_OK;
  215. }
  216. /**
  217. * @}
  218. */
  219. /** @defgroup HAL_Exported_Functions_Group2 HAL Control functions
  220. * @brief HAL Control functions
  221. *
  222. @verbatim
  223. ===============================================================================
  224. ##### HAL Control functions #####
  225. ===============================================================================
  226. [..] This section provides functions allowing to:
  227. (+) Provide a tick value in millisecond
  228. (+) Provide a blocking delay in millisecond
  229. (+) Suspend the time base source interrupt
  230. (+) Resume the time base source interrupt
  231. (+) Get the HAL API driver version
  232. (+) Get the device identifier
  233. (+) Get the device revision identifier
  234. (+) Enable/Disable Debug module during Sleep mode
  235. (+) Enable/Disable Debug module during STOP mode
  236. (+) Enable/Disable Debug module during STANDBY mode
  237. @endverbatim
  238. * @{
  239. */
  240. /**
  241. * @brief This function is called to increment a global variable "uwTick"
  242. * used as application time base.
  243. * @note In the default implementation, this variable is incremented each 1ms
  244. * in SysTick ISR.
  245. * @note This function is declared as __weak to be overwritten in case of other
  246. * implementations in user file.
  247. * @retval None
  248. */
  249. __weak void HAL_IncTick(void)
  250. {
  251. uwTick += uwTickFreq;
  252. }
  253. /**
  254. * @brief Povides a tick value in millisecond.
  255. * @note The function is declared as __Weak to be overwritten in case of other
  256. * implementations in user file.
  257. * @retval tick value
  258. */
  259. __weak uint32_t HAL_GetTick(void)
  260. {
  261. return uwTick;
  262. }
  263. /**
  264. * @brief This function returns a tick priority.
  265. * @retval tick priority
  266. */
  267. uint32_t HAL_GetTickPrio(void)
  268. {
  269. return uwTickPrio;
  270. }
  271. /**
  272. * @brief Set new tick Freq.
  273. * @retval status
  274. */
  275. HAL_StatusTypeDef HAL_SetTickFreq(HAL_TickFreqTypeDef Freq)
  276. {
  277. HAL_StatusTypeDef status = HAL_OK;
  278. HAL_TickFreqTypeDef prevTickFreq;
  279. assert_param(IS_TICKFREQ(Freq));
  280. if (uwTickFreq != Freq)
  281. {
  282. /* Back up uwTickFreq frequency */
  283. prevTickFreq = uwTickFreq;
  284. /* Update uwTickFreq global variable used by HAL_InitTick() */
  285. uwTickFreq = Freq;
  286. /* Apply the new tick Freq */
  287. status = HAL_InitTick(uwTickPrio);
  288. if (status != HAL_OK)
  289. {
  290. /* Restore previous tick frequency */
  291. uwTickFreq = prevTickFreq;
  292. }
  293. }
  294. return status;
  295. }
  296. /**
  297. * @brief Return tick frequency.
  298. * @retval tick period in Hz
  299. */
  300. HAL_TickFreqTypeDef HAL_GetTickFreq(void)
  301. {
  302. return uwTickFreq;
  303. }
  304. /**
  305. * @brief This function provides accurate delay (in milliseconds) based
  306. * on variable incremented.
  307. * @note In the default implementation , SysTick timer is the source of time base.
  308. * It is used to generate interrupts at regular time intervals where uwTick
  309. * is incremented.
  310. * The function is declared as __Weak to be overwritten in case of other
  311. * implementations in user file.
  312. * @param Delay specifies the delay time length, in milliseconds.
  313. * @retval None
  314. */
  315. __weak void HAL_Delay(uint32_t Delay)
  316. {
  317. uint32_t tickstart = HAL_GetTick();
  318. uint32_t wait = Delay;
  319. /* Add freq to guarantee minimum wait */
  320. if (wait < HAL_MAX_DELAY)
  321. {
  322. wait += (uint32_t)(uwTickFreq);
  323. }
  324. while((HAL_GetTick() - tickstart) < wait)
  325. {
  326. }
  327. }
  328. /**
  329. * @brief Suspend Tick increment.
  330. * @note In the default implementation , SysTick timer is the source of time base. It is
  331. * used to generate interrupts at regular time intervals. Once HAL_SuspendTick()
  332. * is called, the the SysTick interrupt will be disabled and so Tick increment
  333. * is suspended.
  334. * @note This function is declared as __weak to be overwritten in case of other
  335. * implementations in user file.
  336. * @retval None
  337. */
  338. __weak void HAL_SuspendTick(void)
  339. {
  340. /* Disable SysTick Interrupt */
  341. SysTick->CTRL &= ~SysTick_CTRL_TICKINT_Msk;
  342. }
  343. /**
  344. * @brief Resume Tick increment.
  345. * @note In the default implementation , SysTick timer is the source of time base. It is
  346. * used to generate interrupts at regular time intervals. Once HAL_ResumeTick()
  347. * is called, the the SysTick interrupt will be enabled and so Tick increment
  348. * is resumed.
  349. * The function is declared as __Weak to be overwritten in case of other
  350. * implementations in user file.
  351. * @retval None
  352. */
  353. __weak void HAL_ResumeTick(void)
  354. {
  355. /* Enable SysTick Interrupt */
  356. SysTick->CTRL |= SysTick_CTRL_TICKINT_Msk;
  357. }
  358. /**
  359. * @brief This function returns the HAL revision
  360. * @retval version 0xXYZR (8bits for each decimal, R for RC)
  361. */
  362. uint32_t HAL_GetHalVersion(void)
  363. {
  364. return __STM32F3xx_HAL_VERSION;
  365. }
  366. /**
  367. * @brief Returns the device revision identifier.
  368. * @retval Device revision identifier
  369. */
  370. uint32_t HAL_GetREVID(void)
  371. {
  372. return((DBGMCU->IDCODE) >> 16U);
  373. }
  374. /**
  375. * @brief Returns the device identifier.
  376. * @retval Device identifier
  377. */
  378. uint32_t HAL_GetDEVID(void)
  379. {
  380. return((DBGMCU->IDCODE) & IDCODE_DEVID_MASK);
  381. }
  382. /**
  383. * @brief Returns first word of the unique device identifier (UID based on 96 bits)
  384. * @retval Device identifier
  385. */
  386. uint32_t HAL_GetUIDw0(void)
  387. {
  388. return(READ_REG(*((uint32_t *)UID_BASE)));
  389. }
  390. /**
  391. * @brief Returns second word of the unique device identifier (UID based on 96 bits)
  392. * @retval Device identifier
  393. */
  394. uint32_t HAL_GetUIDw1(void)
  395. {
  396. return(READ_REG(*((uint32_t *)(UID_BASE + 4U))));
  397. }
  398. /**
  399. * @brief Returns third word of the unique device identifier (UID based on 96 bits)
  400. * @retval Device identifier
  401. */
  402. uint32_t HAL_GetUIDw2(void)
  403. {
  404. return(READ_REG(*((uint32_t *)(UID_BASE + 8U))));
  405. }
  406. /**
  407. * @brief Enable the Debug Module during SLEEP mode
  408. * @retval None
  409. */
  410. void HAL_DBGMCU_EnableDBGSleepMode(void)
  411. {
  412. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP);
  413. }
  414. /**
  415. * @brief Disable the Debug Module during SLEEP mode
  416. * @retval None
  417. */
  418. void HAL_DBGMCU_DisableDBGSleepMode(void)
  419. {
  420. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP);
  421. }
  422. /**
  423. * @brief Enable the Debug Module during STOP mode
  424. * @retval None
  425. */
  426. void HAL_DBGMCU_EnableDBGStopMode(void)
  427. {
  428. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP);
  429. }
  430. /**
  431. * @brief Disable the Debug Module during STOP mode
  432. * @retval None
  433. */
  434. void HAL_DBGMCU_DisableDBGStopMode(void)
  435. {
  436. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP);
  437. }
  438. /**
  439. * @brief Enable the Debug Module during STANDBY mode
  440. * @retval None
  441. */
  442. void HAL_DBGMCU_EnableDBGStandbyMode(void)
  443. {
  444. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY);
  445. }
  446. /**
  447. * @brief Disable the Debug Module during STANDBY mode
  448. * @retval None
  449. */
  450. void HAL_DBGMCU_DisableDBGStandbyMode(void)
  451. {
  452. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY);
  453. }
  454. /**
  455. * @}
  456. */
  457. /**
  458. * @}
  459. */
  460. #endif /* HAL_MODULE_ENABLED */
  461. /**
  462. * @}
  463. */
  464. /**
  465. * @}
  466. */
  467. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/