initial commit

This commit is contained in:
2024-12-15 00:34:01 +06:00
commit 31efbc726f
1576 changed files with 657692 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#ifndef __ATCMD_MP_H__
#define __ATCMD_MP_H__
#include <platform_opts.h>
#if CONFIG_BT
#define CONFIG_ATCMD_MP_EXT0 1 //support MP ext0 AT command
#else
#define CONFIG_ATCMD_MP_EXT0 0 //support MP ext0 AT command
#endif
#define CONFIG_ATCMD_MP_EXT1 0 //support MP ext1 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