diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-21 13:03:02 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-21 13:03:02 +0000 |
commit | 5bbc0cefcddfa6870b592018fe10c503c2c06aad (patch) | |
tree | f2906e372dbb95cf578ebf1997094131a77140d8 /os | |
parent | 4871abd9cefbeb7e03f16f6108be860cd1b10578 (diff) | |
download | ChibiOS-5bbc0cefcddfa6870b592018fe10c503c2c06aad.tar.gz ChibiOS-5bbc0cefcddfa6870b592018fe10c503c2c06aad.tar.bz2 ChibiOS-5bbc0cefcddfa6870b592018fe10c503c2c06aad.zip |
Gave it a different name.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6018 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/platforms/STM32F4xx/hal_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/STM32F4xx/hal_lld.c b/os/hal/platforms/STM32F4xx/hal_lld.c index 194752673..527711054 100644 --- a/os/hal/platforms/STM32F4xx/hal_lld.c +++ b/os/hal/platforms/STM32F4xx/hal_lld.c @@ -74,7 +74,7 @@ static void hal_lld_backup_domain_init(void) { #endif /* STM32_RTCSEL != STM32_RTCSEL_NOCLOCK */
#endif /* HAL_USE_RTC */
-#if HAL_USE_BKPSRAM
+#if STM32_BKPRAM_ENABLE
rccEnableBKPSRAM(false);
PWR->CSR |= PWR_CSR_BRE;
@@ -82,7 +82,7 @@ static void hal_lld_backup_domain_init(void) { ; /* Waits until the regulator is stable */
#else
PWR->CSR &= ~PWR_CSR_BRE;
-#endif /* HAL_USE_BKPSRAM */
+#endif /* STM32_BKPRAM_ENABLE */
}
/*===========================================================================*/
|