mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2024-11-24 15:04:20 +00:00
12 lines
272 B
C
Executable file
12 lines
272 B
C
Executable file
#ifndef __ATCMD_MP_H__
|
|
#define __ATCMD_MP_H__
|
|
|
|
#define CONFIG_ATCMD_MP_EXT0 0 //support MP ext0 AT command
|
|
|
|
typedef struct _at_command_mp_ext_item_{
|
|
char *mp_ext_cmd;
|
|
int (*mp_ext_fun)(void **argv, int argc);
|
|
char *mp_ext_usage;
|
|
}at_mp_ext_item_t;
|
|
|
|
#endif
|