- 论坛徽章:
- 0
|
回复 3# hellioncu - // Get the header, and check command
- memcpy(buf, line.c_str(), sizeof(GK301_header) + sizeof(GK301_login) + sizeof(GK301_tail));
- GK301_login *glg;
- glg = (GK301_login *)malloc(sizeof(GK301_login));
- memcpy(glg, buf + sizeof(GK301_header), sizeof(GK301_login));
- printf("ID=%x%x%x%x%x%x%x%x, Rec=0x%x\n", glg->id[0], glg->id[1], glg->id[2],glg->id[3],
- glg->id[4],glg->id[5],glg->id[6],glg->id[7],glg->id_num);
- // Get the tail, may be we need the serial number
- GK301_tail *gtl;
- gtl = (GK301_tail *)malloc(sizeof(GK301_tail));
- memcpy(gtl, buf + sizeof(GK301_header) + sizeof(GK301_login), sizeof(GK301_tail));
- printf("Serial=0x%x, CRC=0x%x, Stop=0x%x\n", gtl->seq, gtl->crc, gtl->stop);
- // At last, we should reply a package to the terminal device
- bzero(buf, sizeof(buf));
- memcpy(buf, line.c_str(), sizeof(GK301_header));
- memcpy(buf + sizeof(GK301_header), gtl, sizeof(GK301_tail));
- result = buf;
复制代码 那么请看以上的代码,我的处理有问题吗,无法获得我想要的数据啊,只能获得部分数据。
 |
|