2021-01-09 21:14:16 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Rafael Dias Menezes <rdmeneze@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Board configuration macros for the efm32pg1b soc
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SOC__H_
|
|
|
|
#define _SOC__H_
|
|
|
|
|
2022-05-06 17:11:04 +08:00
|
|
|
#include <zephyr/sys/util.h>
|
2021-01-09 21:14:16 +08:00
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
|
|
|
|
#include <em_bus.h>
|
|
|
|
#include <em_common.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "soc_pinmap.h"
|
|
|
|
#include "../common/soc_gpio.h"
|
|
|
|
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
|
|
|
|
#endif /* _SOC__H_ */
|