zhyinch
2020-10-07 170e557c0d38e66e6100d32a2a465ee1cd6f5275
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 "stm32f10x.h"
 
#define MAX_FRAME_LEN        50
#define PWTAG_MAXGROUPNUM  20
void UsartParseDataHandler(uint8_t data);
struct pwtag_structure
{
   uint8_t groupnum,remain_time,index;
     uint16_t groupid[PWTAG_MAXGROUPNUM][2],group_interval[PWTAG_MAXGROUPNUM];
} ;
extern struct pwtag_structure pwtag;
void SendComMap(uint8_t data_length, uint8_t index);
#endif