Select one of the symbols to view example projects that use it.
 
Outline
#define __APP_HF_MSG_SET_H__
#define HF_MSG_ARGS_MAX
hf_cmd_handler
hf_msg_hdl_t
register_hfp_hf();
Files
loading...
SourceVuESP-IDF Framework and Exampleshfp_hf samplemain/app_hf_msg_set.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #ifndef __APP_HF_MSG_SET_H__ #define __APP_HF_MSG_SET_H__ #define HF_MSG_ARGS_MAX (5) typedef int (* hf_cmd_handler)(int argn, char **argv); typedef struct { const char *str; hf_cmd_handler handler; }{ ... } hf_msg_hdl_t; void register_hfp_hf(void);/* ... */ #endif /* __APP_HF_MSG_SET_H__*/
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.