19 lines
410 B
C
19 lines
410 B
C
#ifndef _JSON_PACKET_H
|
|
#define _JSON_PACKET_H
|
|
#include <stdint.h>
|
|
|
|
|
|
// 5 分钟数据上报
|
|
int Json5MinFlowDataPacket (uint8_t * buffer);
|
|
|
|
// 注册包数据 需要应答
|
|
int JsonRegistDataPacket (uint8_t * buffer);
|
|
// 心跳包,需要应答
|
|
int JsonHeartDatapacket (uint8_t * buffer);
|
|
|
|
int Json5MinSluiceDataPacket (uint8_t * buffer);
|
|
|
|
int JsonConfigReadDataPacket(uint8_t* buffer);
|
|
int JsonAckSuccPacket(char * buffer);
|
|
#endif
|