1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| /**
| *******************************************************************************
| * @file log_uart.h
| * @create 2023-08-01
| * @author Panchip BLE GROUP
| * @note
| * Copyright (c) 2022 Shanghai Panchip Microelectronics Co.,Ltd.
| *
| *******************************************************************************
| */
| #ifndef _APP_LOG_UART_H_
| #define _APP_LOG_UART_H_
|
| #include <stdint.h>
| #include "sdk_config.h"
|
| #if APP_LOG_EN && CONFIG_UART_LOG_ENABLE
| void debug_uart_init(void);
| #endif
|
|
| #endif
|
|