24 lines
352 B
C
24 lines
352 B
C
/*
|
|
* Copyright (c) 2021 Sateesh Kotapati
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief Register access macros for the EFR32BG22 SoC
|
|
*
|
|
*/
|
|
|
|
#ifndef EFR32BG22_SOC_H_
|
|
#define EFR32BG22_SOC_H_
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <em_common.h>
|
|
#include "../common/soc_gpio.h"
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#endif /* EFR32BG22_SOC_H_ */
|