1 /*
2  * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _CONSOLE_H
8 #define _CONSOLE_H
9 
10 #include <stdio.h>
11 
12 #define console_printf printf
13 
14 #endif
15