1 /* 2 * Copyright (c) 2023 Ambiq Micro Inc. <www.ambiq.com> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __SOC_H__ 8 #define __SOC_H__ 9 10 #if defined(CONFIG_SOC_APOLLO3P_BLUE) 11 #include <apollo3p.h> 12 #elif defined(CONFIG_SOC_APOLLO3_BLUE) 13 #include <apollo3.h> 14 #endif 15 16 #endif /* __SOC_H__ */ 17