1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 #ifndef __APP_CMD_H__
5 #define __APP_CMD_H__
6 #ifdef __cplusplus
7 extern "C"
8 {
9 #endif
10 #ifdef __PC_CMD_UART__
11 
12 #include "hal_cmd.h"
13 typedef struct {
14     void *param;
15 } APP_CMD_HANDLE;
16 
17 void app_cmd_open(void);
18 
19 void app_cmd_close(void);
20 #endif
21 #ifdef __cplusplus
22 }
23 #endif
24 #endif//__FMDEC_H__
25