You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
515 B
38 lines
515 B
/* |
|
* Copyright (c) 2019 Interay Solutions B.V. |
|
* Copyright (c) 2019 Oane Kingma |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/** |
|
* @file |
|
* @brief Board configuration macros for the efm32gg soc |
|
* |
|
*/ |
|
|
|
#ifndef _SOC__H_ |
|
#define _SOC__H_ |
|
|
|
#include <zephyr/sys/util.h> |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
#ifndef _ASMLANGUAGE |
|
|
|
#include <em_bus.h> |
|
#include <em_common.h> |
|
|
|
|
|
#include "soc_pinmap.h" |
|
#include "../common/soc_gpio.h" |
|
|
|
#endif /* !_ASMLANGUAGE */ |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif /* _SOC__H_ */
|
|
|