21 lines
254 B
C
21 lines
254 B
C
|
/*
|
||
|
* Copyright (c) 2022 Renesas Electronics Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#ifndef _SOC__H_
|
||
|
#define _SOC__H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <DA1469xAB.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _SOC__H_ */
|