You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stm32l1xx_hal.c 16KB

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