stm32f7xx_hal.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. /**
  2. ******************************************************************************
  3. * @file stm32f7xx_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</center></h2>
  24. *
  25. * Redistribution and use in source and binary forms, with or without modification,
  26. * are permitted provided that the following conditions are met:
  27. * 1. Redistributions of source code must retain the above copyright notice,
  28. * this list of conditions and the following disclaimer.
  29. * 2. Redistributions in binary form must reproduce the above copyright notice,
  30. * this list of conditions and the following disclaimer in the documentation
  31. * and/or other materials provided with the distribution.
  32. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  33. * may be used to endorse or promote products derived from this software
  34. * without specific prior written permission.
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  37. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  40. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  41. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  42. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  43. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  45. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  46. *
  47. ******************************************************************************
  48. */
  49. /* Includes ------------------------------------------------------------------*/
  50. #include "stm32f7xx_hal.h"
  51. /** @addtogroup STM32F7xx_HAL_Driver
  52. * @{
  53. */
  54. /** @defgroup HAL HAL
  55. * @brief HAL module driver.
  56. * @{
  57. */
  58. /* Private typedef -----------------------------------------------------------*/
  59. /* Private define ------------------------------------------------------------*/
  60. /** @addtogroup HAL_Private_Constants
  61. * @{
  62. */
  63. /**
  64. * @brief STM32F7xx HAL Driver version number V1.2.5
  65. */
  66. #define __STM32F7xx_HAL_VERSION_MAIN (0x01) /*!< [31:24] main version */
  67. #define __STM32F7xx_HAL_VERSION_SUB1 (0x02) /*!< [23:16] sub1 version */
  68. #define __STM32F7xx_HAL_VERSION_SUB2 (0x05) /*!< [15:8] sub2 version */
  69. #define __STM32F7xx_HAL_VERSION_RC (0x00) /*!< [7:0] release candidate */
  70. #define __STM32F7xx_HAL_VERSION ((__STM32F7xx_HAL_VERSION_MAIN << 24)\
  71. |(__STM32F7xx_HAL_VERSION_SUB1 << 16)\
  72. |(__STM32F7xx_HAL_VERSION_SUB2 << 8 )\
  73. |(__STM32F7xx_HAL_VERSION_RC))
  74. #define IDCODE_DEVID_MASK ((uint32_t)0x00000FFF)
  75. /**
  76. * @}
  77. */
  78. /* Private macro -------------------------------------------------------------*/
  79. /* Private variables ---------------------------------------------------------*/
  80. /** @addtogroup HAL_Private_Variables
  81. * @{
  82. */
  83. __IO uint32_t uwTick;
  84. uint32_t uwTickPrio = (1UL << __NVIC_PRIO_BITS); /* Invalid PRIO */
  85. HAL_TickFreqTypeDef uwTickFreq = HAL_TICK_FREQ_DEFAULT; /* 1KHz */
  86. /**
  87. * @}
  88. */
  89. /* Private function prototypes -----------------------------------------------*/
  90. /* Private functions ---------------------------------------------------------*/
  91. /** @defgroup HAL_Exported_Functions HAL Exported Functions
  92. * @{
  93. */
  94. /** @defgroup HAL_Exported_Functions_Group1 Initialization and de-initialization Functions
  95. * @brief Initialization and de-initialization functions
  96. *
  97. @verbatim
  98. ===============================================================================
  99. ##### Initialization and Configuration functions #####
  100. ===============================================================================
  101. [..] This section provides functions allowing to:
  102. (+) Initializes the Flash interface the NVIC allocation and initial clock
  103. configuration. It initializes the systick also when timeout is needed
  104. and the backup domain when enabled.
  105. (+) De-Initializes common part of the HAL.
  106. (+) Configure the time base source to have 1ms time base with a dedicated
  107. Tick interrupt priority.
  108. (++) SysTick timer is used by default as source of time base, but user
  109. can eventually implement his proper time base source (a general purpose
  110. timer for example or other time source), keeping in mind that Time base
  111. duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and
  112. handled in milliseconds basis.
  113. (++) Time base configuration function (HAL_InitTick ()) is called automatically
  114. at the beginning of the program after reset by HAL_Init() or at any time
  115. when clock is configured, by HAL_RCC_ClockConfig().
  116. (++) Source of time base is configured to generate interrupts at regular
  117. time intervals. Care must be taken if HAL_Delay() is called from a
  118. peripheral ISR process, the Tick interrupt line must have higher priority
  119. (numerically lower) than the peripheral interrupt. Otherwise the caller
  120. ISR process will be blocked.
  121. (++) functions affecting time base configurations are declared as __weak
  122. to make override possible in case of other implementations in user file.
  123. @endverbatim
  124. * @{
  125. */
  126. /**
  127. * @brief This function is used to initialize the HAL Library; it must be the first
  128. * instruction to be executed in the main program (before to call any other
  129. * HAL function), it performs the following:
  130. * Configure the Flash prefetch, and instruction cache through ART accelerator.
  131. * Configures the SysTick to generate an interrupt each 1 millisecond,
  132. * which is clocked by the HSI (at this stage, the clock is not yet
  133. * configured and thus the system is running from the internal HSI at 16 MHz).
  134. * Set NVIC Group Priority to 4.
  135. * Calls the HAL_MspInit() callback function defined in user file
  136. * "stm32f7xx_hal_msp.c" to do the global low level hardware initialization
  137. *
  138. * @note SysTick is used as time base for the HAL_Delay() function, the application
  139. * need to ensure that the SysTick time base is always set to 1 millisecond
  140. * to have correct HAL operation.
  141. * @retval HAL status
  142. */
  143. HAL_StatusTypeDef HAL_Init(void)
  144. {
  145. /* Configure Instruction cache through ART accelerator */
  146. #if (ART_ACCLERATOR_ENABLE != 0)
  147. __HAL_FLASH_ART_ENABLE();
  148. #endif /* ART_ACCLERATOR_ENABLE */
  149. /* Configure Flash prefetch */
  150. #if (PREFETCH_ENABLE != 0U)
  151. __HAL_FLASH_PREFETCH_BUFFER_ENABLE();
  152. #endif /* PREFETCH_ENABLE */
  153. /* Set Interrupt Group Priority */
  154. HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);
  155. /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */
  156. HAL_InitTick(TICK_INT_PRIORITY);
  157. /* Init the low level hardware */
  158. HAL_MspInit();
  159. /* Return function status */
  160. return HAL_OK;
  161. }
  162. /**
  163. * @brief This function de-Initializes common part of the HAL and stops the systick.
  164. * This function is optional.
  165. * @retval HAL status
  166. */
  167. HAL_StatusTypeDef HAL_DeInit(void)
  168. {
  169. /* Reset of all peripherals */
  170. __HAL_RCC_APB1_FORCE_RESET();
  171. __HAL_RCC_APB1_RELEASE_RESET();
  172. __HAL_RCC_APB2_FORCE_RESET();
  173. __HAL_RCC_APB2_RELEASE_RESET();
  174. __HAL_RCC_AHB1_FORCE_RESET();
  175. __HAL_RCC_AHB1_RELEASE_RESET();
  176. __HAL_RCC_AHB2_FORCE_RESET();
  177. __HAL_RCC_AHB2_RELEASE_RESET();
  178. __HAL_RCC_AHB3_FORCE_RESET();
  179. __HAL_RCC_AHB3_RELEASE_RESET();
  180. /* De-Init the low level hardware */
  181. HAL_MspDeInit();
  182. /* Return function status */
  183. return HAL_OK;
  184. }
  185. /**
  186. * @brief Initialize the MSP.
  187. * @retval None
  188. */
  189. __weak void HAL_MspInit(void)
  190. {
  191. /* NOTE : This function should not be modified, when the callback is needed,
  192. the HAL_MspInit could be implemented in the user file
  193. */
  194. }
  195. /**
  196. * @brief DeInitializes the MSP.
  197. * @retval None
  198. */
  199. __weak void HAL_MspDeInit(void)
  200. {
  201. /* NOTE : This function should not be modified, when the callback is needed,
  202. the HAL_MspDeInit could be implemented in the user file
  203. */
  204. }
  205. /**
  206. * @brief This function configures the source of the time base.
  207. * The time source is configured to have 1ms time base with a dedicated
  208. * Tick interrupt priority.
  209. * @note This function is called automatically at the beginning of program after
  210. * reset by HAL_Init() or at any time when clock is reconfigured by HAL_RCC_ClockConfig().
  211. * @note In the default implementation, SysTick timer is the source of time base.
  212. * It is used to generate interrupts at regular time intervals.
  213. * Care must be taken if HAL_Delay() is called from a peripheral ISR process,
  214. * The SysTick interrupt must have higher priority (numerically lower)
  215. * than the peripheral interrupt. Otherwise the caller ISR process will be blocked.
  216. * The function is declared as __weak to be overwritten in case of other
  217. * implementation in user file.
  218. * @param TickPriority Tick interrupt priority.
  219. * @retval HAL status
  220. */
  221. __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority)
  222. {
  223. /* Configure the SysTick to have interrupt in 1ms time basis*/
  224. if (HAL_SYSTICK_Config(SystemCoreClock / (1000U / uwTickFreq)) > 0U)
  225. {
  226. return HAL_ERROR;
  227. }
  228. /* Configure the SysTick IRQ priority */
  229. if (TickPriority < (1UL << __NVIC_PRIO_BITS))
  230. {
  231. HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U);
  232. uwTickPrio = TickPriority;
  233. }
  234. else
  235. {
  236. return HAL_ERROR;
  237. }
  238. /* Return function status */
  239. return HAL_OK;
  240. }
  241. /**
  242. * @}
  243. */
  244. /** @defgroup HAL_Exported_Functions_Group2 HAL Control functions
  245. * @brief HAL Control functions
  246. *
  247. @verbatim
  248. ===============================================================================
  249. ##### HAL Control functions #####
  250. ===============================================================================
  251. [..] This section provides functions allowing to:
  252. (+) Provide a tick value in millisecond
  253. (+) Provide a blocking delay in millisecond
  254. (+) Suspend the time base source interrupt
  255. (+) Resume the time base source interrupt
  256. (+) Get the HAL API driver version
  257. (+) Get the device identifier
  258. (+) Get the device revision identifier
  259. (+) Enable/Disable Debug module during SLEEP mode
  260. (+) Enable/Disable Debug module during STOP mode
  261. (+) Enable/Disable Debug module during STANDBY mode
  262. @endverbatim
  263. * @{
  264. */
  265. /**
  266. * @brief This function is called to increment a global variable "uwTick"
  267. * used as application time base.
  268. * @note In the default implementation, this variable is incremented each 1ms
  269. * in SysTick ISR.
  270. * @note This function is declared as __weak to be overwritten in case of other
  271. * implementations in user file.
  272. * @retval None
  273. */
  274. __weak void HAL_IncTick(void)
  275. {
  276. uwTick += uwTickFreq;
  277. }
  278. /**
  279. * @brief Provides a tick value in millisecond.
  280. * @note This function is declared as __weak to be overwritten in case of other
  281. * implementations in user file.
  282. * @retval tick value
  283. */
  284. __weak uint32_t HAL_GetTick(void)
  285. {
  286. return uwTick;
  287. }
  288. /**
  289. * @brief This function returns a tick priority.
  290. * @retval tick priority
  291. */
  292. uint32_t HAL_GetTickPrio(void)
  293. {
  294. return uwTickPrio;
  295. }
  296. /**
  297. * @brief Set new tick Freq.
  298. * @retval Status
  299. */
  300. HAL_StatusTypeDef HAL_SetTickFreq(HAL_TickFreqTypeDef Freq)
  301. {
  302. HAL_StatusTypeDef status = HAL_OK;
  303. assert_param(IS_TICKFREQ(Freq));
  304. if (uwTickFreq != Freq)
  305. {
  306. uwTickFreq = Freq;
  307. /* Apply the new tick Freq */
  308. status = HAL_InitTick(uwTickPrio);
  309. }
  310. return status;
  311. }
  312. /**
  313. * @brief Return tick frequency.
  314. * @retval tick period in Hz
  315. */
  316. HAL_TickFreqTypeDef HAL_GetTickFreq(void)
  317. {
  318. return uwTickFreq;
  319. }
  320. /**
  321. * @brief This function provides minimum delay (in milliseconds) based
  322. * on variable incremented.
  323. * @note In the default implementation , SysTick timer is the source of time base.
  324. * It is used to generate interrupts at regular time intervals where uwTick
  325. * is incremented.
  326. * @note This function is declared as __weak to be overwritten in case of other
  327. * implementations in user file.
  328. * @param Delay specifies the delay time length, in milliseconds.
  329. * @retval None
  330. */
  331. __weak void HAL_Delay(uint32_t Delay)
  332. {
  333. uint32_t tickstart = HAL_GetTick();
  334. uint32_t wait = Delay;
  335. /* Add a freq to guarantee minimum wait */
  336. if (wait < HAL_MAX_DELAY)
  337. {
  338. wait += (uint32_t)(uwTickFreq);
  339. }
  340. while ((HAL_GetTick() - tickstart) < wait)
  341. {
  342. }
  343. }
  344. /**
  345. * @brief Suspend Tick increment.
  346. * @note In the default implementation , SysTick timer is the source of time base. It is
  347. * used to generate interrupts at regular time intervals. Once HAL_SuspendTick()
  348. * is called, the SysTick interrupt will be disabled and so Tick increment
  349. * is suspended.
  350. * @note This function is declared as __weak to be overwritten in case of other
  351. * implementations in user file.
  352. * @retval None
  353. */
  354. __weak void HAL_SuspendTick(void)
  355. {
  356. /* Disable SysTick Interrupt */
  357. SysTick->CTRL &= ~SysTick_CTRL_TICKINT_Msk;
  358. }
  359. /**
  360. * @brief Resume Tick increment.
  361. * @note In the default implementation , SysTick timer is the source of time base. It is
  362. * used to generate interrupts at regular time intervals. Once HAL_ResumeTick()
  363. * is called, the SysTick interrupt will be enabled and so Tick increment
  364. * is resumed.
  365. * @note This function is declared as __weak to be overwritten in case of other
  366. * implementations in user file.
  367. * @retval None
  368. */
  369. __weak void HAL_ResumeTick(void)
  370. {
  371. /* Enable SysTick Interrupt */
  372. SysTick->CTRL |= SysTick_CTRL_TICKINT_Msk;
  373. }
  374. /**
  375. * @brief Returns the HAL revision
  376. * @retval version : 0xXYZR (8bits for each decimal, R for RC)
  377. */
  378. uint32_t HAL_GetHalVersion(void)
  379. {
  380. return __STM32F7xx_HAL_VERSION;
  381. }
  382. /**
  383. * @brief Returns the device revision identifier.
  384. * @retval Device revision identifier
  385. */
  386. uint32_t HAL_GetREVID(void)
  387. {
  388. return((DBGMCU->IDCODE) >> 16U);
  389. }
  390. /**
  391. * @brief Returns the device identifier.
  392. * @retval Device identifier
  393. */
  394. uint32_t HAL_GetDEVID(void)
  395. {
  396. return((DBGMCU->IDCODE) & IDCODE_DEVID_MASK);
  397. }
  398. /**
  399. * @brief Returns first word of the unique device identifier (UID based on 96 bits)
  400. * @retval Device identifier
  401. */
  402. uint32_t HAL_GetUIDw0(void)
  403. {
  404. return(READ_REG(*((uint32_t *)UID_BASE)));
  405. }
  406. /**
  407. * @brief Returns second word of the unique device identifier (UID based on 96 bits)
  408. * @retval Device identifier
  409. */
  410. uint32_t HAL_GetUIDw1(void)
  411. {
  412. return(READ_REG(*((uint32_t *)(UID_BASE + 4U))));
  413. }
  414. /**
  415. * @brief Returns third word of the unique device identifier (UID based on 96 bits)
  416. * @retval Device identifier
  417. */
  418. uint32_t HAL_GetUIDw2(void)
  419. {
  420. return(READ_REG(*((uint32_t *)(UID_BASE + 8U))));
  421. }
  422. /**
  423. * @brief Enable the Debug Module during SLEEP mode
  424. * @retval None
  425. */
  426. void HAL_DBGMCU_EnableDBGSleepMode(void)
  427. {
  428. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP);
  429. }
  430. /**
  431. * @brief Disable the Debug Module during SLEEP mode
  432. * @retval None
  433. */
  434. void HAL_DBGMCU_DisableDBGSleepMode(void)
  435. {
  436. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP);
  437. }
  438. /**
  439. * @brief Enable the Debug Module during STOP mode
  440. * @retval None
  441. */
  442. void HAL_DBGMCU_EnableDBGStopMode(void)
  443. {
  444. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP);
  445. }
  446. /**
  447. * @brief Disable the Debug Module during STOP mode
  448. * @retval None
  449. */
  450. void HAL_DBGMCU_DisableDBGStopMode(void)
  451. {
  452. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP);
  453. }
  454. /**
  455. * @brief Enable the Debug Module during STANDBY mode
  456. * @retval None
  457. */
  458. void HAL_DBGMCU_EnableDBGStandbyMode(void)
  459. {
  460. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY);
  461. }
  462. /**
  463. * @brief Disable the Debug Module during STANDBY mode
  464. * @retval None
  465. */
  466. void HAL_DBGMCU_DisableDBGStandbyMode(void)
  467. {
  468. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY);
  469. }
  470. /**
  471. * @brief Enables the I/O Compensation Cell.
  472. * @note The I/O compensation cell can be used only when the device supply
  473. * voltage ranges from 2.4 to 3.6 V.
  474. * @retval None
  475. */
  476. void HAL_EnableCompensationCell(void)
  477. {
  478. SYSCFG->CMPCR |= SYSCFG_CMPCR_CMP_PD;
  479. }
  480. /**
  481. * @brief Power-down the I/O Compensation Cell.
  482. * @note The I/O compensation cell can be used only when the device supply
  483. * voltage ranges from 2.4 to 3.6 V.
  484. * @retval None
  485. */
  486. void HAL_DisableCompensationCell(void)
  487. {
  488. SYSCFG->CMPCR &= (uint32_t)~((uint32_t)SYSCFG_CMPCR_CMP_PD);
  489. }
  490. /**
  491. * @brief Enables the FMC Memory Mapping Swapping.
  492. *
  493. * @note SDRAM is accessible at 0x60000000
  494. * and NOR/RAM is accessible at 0xC0000000
  495. *
  496. * @retval None
  497. */
  498. void HAL_EnableFMCMemorySwapping(void)
  499. {
  500. SYSCFG->MEMRMP |= SYSCFG_MEMRMP_SWP_FMC_0;
  501. }
  502. /**
  503. * @brief Disables the FMC Memory Mapping Swapping
  504. *
  505. * @note SDRAM is accessible at 0xC0000000 (default mapping)
  506. * and NOR/RAM is accessible at 0x60000000 (default mapping)
  507. *
  508. * @retval None
  509. */
  510. void HAL_DisableFMCMemorySwapping(void)
  511. {
  512. SYSCFG->MEMRMP &= (uint32_t)~((uint32_t)SYSCFG_MEMRMP_SWP_FMC);
  513. }
  514. #if defined (STM32F765xx) || defined (STM32F767xx) || defined (STM32F769xx) || defined (STM32F777xx) || defined (STM32F779xx)
  515. /**
  516. * @brief Enable the Internal FLASH Bank Swapping.
  517. *
  518. * @note This function can be used only for STM32F77xx/STM32F76xx devices.
  519. *
  520. * @note Flash Bank2 mapped at 0x08000000 (AXI) (aliased at 0x00200000 (TCM))
  521. * and Flash Bank1 mapped at 0x08100000 (AXI) (aliased at 0x00300000 (TCM))
  522. *
  523. * @retval None
  524. */
  525. void HAL_EnableMemorySwappingBank(void)
  526. {
  527. SET_BIT(SYSCFG->MEMRMP, SYSCFG_MEMRMP_SWP_FB);
  528. }
  529. /**
  530. * @brief Disable the Internal FLASH Bank Swapping.
  531. *
  532. * @note This function can be used only for STM32F77xx/STM32F76xx devices.
  533. *
  534. * @note The default state : Flash Bank1 mapped at 0x08000000 (AXI) (aliased at 0x00200000 (TCM))
  535. * and Flash Bank2 mapped at 0x08100000 (AXI)( aliased at 0x00300000 (TCM))
  536. *
  537. * @retval None
  538. */
  539. void HAL_DisableMemorySwappingBank(void)
  540. {
  541. CLEAR_BIT(SYSCFG->MEMRMP, SYSCFG_MEMRMP_SWP_FB);
  542. }
  543. #endif /* STM32F767xx || STM32F769xx || STM32F777xx || STM32F779xx */
  544. /**
  545. * @}
  546. */
  547. /**
  548. * @}
  549. */
  550. /**
  551. * @}
  552. */
  553. /**
  554. * @}
  555. */
  556. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/