17 lines
293 B
C
17 lines
293 B
C
/*
|
|
* Copyright (c) 2023 Ambiq Micro Inc. <www.ambiq.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __SOC_H__
|
|
#define __SOC_H__
|
|
|
|
#if defined(CONFIG_SOC_APOLLO3P_BLUE)
|
|
#include <apollo3p.h>
|
|
#elif defined(CONFIG_SOC_APOLLO3_BLUE)
|
|
#include <apollo3.h>
|
|
#endif
|
|
|
|
#endif /* __SOC_H__ */
|