29 lines
412 B
C
29 lines
412 B
C
/*
|
|
* Copyright (c) 2020 Piotr Mienkowski
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Register access macros for the EFR32BG13P SoC
|
|
*
|
|
*/
|
|
|
|
#ifndef EFR32BG13P_SOC_H_
|
|
#define EFR32BG13P_SOC_H_
|
|
|
|
#include <zephyr/sys/util.h>
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <em_common.h>
|
|
|
|
#include "soc_pinmap.h"
|
|
#include "../common/soc_gpio.h"
|
|
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* EFR32BG13P_SOC_H_ */
|