1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/stm32_common/pm: use CPU_LINE for L053-specific code

This commit is contained in:
Vincent Dupont 2018-07-09 11:49:09 +02:00
parent 4aadc1ed39
commit 5e67986775

View File

@ -57,7 +57,7 @@ void pm_set(unsigned mode)
/* Enable WKUP pin to use for wakeup from standby mode */
#if defined(CPU_FAM_STM32L0)
PWR->CSR |= (PWR_CSR_EWUP1 | PWR_CSR_EWUP2);
#if !defined(CPU_MODEL_STM32L053R8)
#if !defined(CPU_LINE_STM32L053xx)
/* STM32L053 only have 2 wake pins */
PWR->CSR |= PWR_CSR_EWUP3;
#endif