chen
2024-09-20 292ed46c6066d47289f1330b1c2bcc6d74761f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
#ifndef __AT_CMD_H__
#define __AT_CMD_H__
 
#include "mainex.h"
 
#define MAX_FRAME_LEN        55
struct tagpos_structure
{
 
     uint16_t tagid;
     uint8_t datalen,data[MAX_FRAME_LEN];
 
};
extern struct regtag_structure regtag_map;
void SendComMap(uint8_t data_length, uint8_t index);
#endif