• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /******************************************************************************
2  * Copyright (c) 2022 Telink Semiconductor (Shanghai) Co., Ltd. ("TELINK")
3  * All rights reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *****************************************************************************/
18 #pragma once
19 
20 #if (__PROJECT_B91_DEMO)
21 #include <vendor/B91_demo/app_config.h>
22 #elif (__PROJECT_B91_MASTER_DONGLE__)
23 #include "../B91_master_dongle/app_config.h"
24 #elif (__PROJECT_B91_FEATURE__)
25 #include "../B91_feature/app_config.h"
26 #elif (__PROJECT_B91_INTERNAL_TEST__)
27 #include "../B91_internal_test/app_config.h"
28 #elif (__PROJECT_B91_CIS_MASTER__)
29 #include "../vendor/audio_cis_mst/app_config.h"
30 #elif (__PROJECT_B91_CIS_SLAVE__)
31 #include "../vendor/audio_cis_slv/app_config.h"
32 #elif (__PROJECT_B91_AUDIO_BIS_BCST__)
33 #include "../vendor/audio_bis_bcst/app_config.h"
34 #elif (__PROJECT_B91_AUDIO_BIS_SYNC__)
35 #include "../vendor/audio_bis_sync/app_config.h"
36 #elif (__PROJECT_B91_HCI__)
37 #include "../B91_controller/app_config.h"
38 #elif (__PROJECT_B91_SLAVE)
39 #include "../B91_slave/app_config.h"
40 #elif (__PROJECT_LITEOS_DEMO)
41 #include "../LiteOS_demo/app_config.h"
42 #else
43 #include "../common/default_config.h"
44 #endif
45