• 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 #ifndef TL_COMMON_H_
19 #define TL_COMMON_H_
20 
21 #include <string.h>
22 #include <stdio.h>
23 
24 #include "config.h"
25 #include "common/types.h"
26 #include "common/bit.h"
27 #include "common/static_assert.h"
28 #include "common/utility.h"
29 #include "common/usb_dbg/myudb.h"
30 #include "common/usb_dbg/log_def_stack.h"
31 
32 #include "vendor/common/user_config.h"
33 #include "vendor/common/blt_common.h"
34 #include "vendor/common/blt_fw_sign.h"
35 #include "vendor/common/blt_led.h"
36 #include "vendor/common/blt_soft_timer.h"
37 #include "vendor/common/custom_pair.h"
38 #include "vendor/common/device_manage.h"
39 #include "vendor/common/simple_sdp.h"
40 #include "vendor/common/flash_fw_check.h"
41 #include "vendor/common/common_dbg.h"
42 
43 #include "gpio_default.h"
44 
45 #endif /* TL_COMMON_H_ */
46