1 /* 2 * Copyright (c) 2018 Christian Taedcke, Diego Sueiro 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * @file 9 * @brief Board configuration macros for the efm32wg soc 10 * 11 */ 12 13 #ifndef _SOC__H_ 14 #define _SOC__H_ 15 16 #include <zephyr/sys/util.h> 17 18 #ifndef _ASMLANGUAGE 19 20 #include <em_common.h> 21 22 23 #include "soc_pinmap.h" 24 #include "../common/soc_gpio.h" 25 26 #endif /* !_ASMLANGUAGE */ 27 28 #endif /* _SOC__H_ */ 29