1 /*
2  * Copyright (c) 2020 TriaGnoSys GmbH
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 /** @file
7  * @brief Silabs EFR32MG21 MCU pin definitions.
8  *
9  * This file contains pin configuration data required by different MCU
10  * modules to correctly configure GPIO controller.
11  */
12 
13 #ifndef ZEPHYR_SOC_ARM_SILABS_EXX32_EFR32MG21_SOC_PINMAP_H_
14 #define ZEPHYR_SOC_ARM_SILABS_EXX32_EFR32MG21_SOC_PINMAP_H_
15 
16 #include <em_gpio.h>
17 
18 #ifdef CONFIG_LOG_BACKEND_SWO
19 #define PIN_SWO { gpioPortA, 3, gpioModePushPull, 1 }
20 #endif  /* CONFIG_LOG_BACKEND_SWO */
21 
22 #endif  /* ZEPHYR_SOC_ARM_SILABS_EXX32_EFR32MG21_SOC_PINMAP_H_ */
23