20 lines
432 B
C
20 lines
432 B
C
/*
|
|
* Copyright (c) 2017 Christian Taedcke
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/** @file
|
|
* @brief Silabs EFM32WG MCU pin definitions.
|
|
*
|
|
* This file contains pin configuration data required by different MCU
|
|
* modules to correctly configure GPIO controller.
|
|
*/
|
|
|
|
#ifndef _SILABS_EFM32WG_SOC_PINMAP_H_
|
|
#define _SILABS_EFM32WG_SOC_PINMAP_H_
|
|
|
|
#include <soc.h>
|
|
#include <em_gpio.h>
|
|
|
|
#endif /* _SILABS_EFM32WG_SOC_PINMAP_H_ */
|