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

boards/common/silabs: make series defines explicit

This commit is contained in:
Bas Stottelaar 2020-06-26 08:58:55 +02:00
parent 1105f60a23
commit aaf32986f3

View File

@ -35,9 +35,9 @@ void aem_init(void)
CMU_ClockEnable(cmuClock_GPIO, true);
/* enable debug peripheral via SWO */
#ifdef _SILICON_LABS_32B_SERIES_0
#if defined(_SILICON_LABS_32B_SERIES_0)
DBG_SWOEnable(GPIO_ROUTE_SWLOCATION_LOC0);
#else
#elif defined(_SILICON_LABS_32B_SERIES_1)
DBG_SWOEnable(GPIO_ROUTELOC0_SWVLOC_LOC0);
#endif