You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdint.h>
|
|
|
|
struct lwmsg{
|
|
|
|
uint8_t * buffer;
|
|
uint8_t * trnsprthdr;
|
|
uint8_t * ctrlhdr;
|
|
uint8_t * msgelems;
|
|
int pos;
|
|
int flags;
|
|
int hlen;
|
|
int rid;
|
|
int seqnum;
|
|
int type;
|
|
|
|
};
|
|
|
|
void lwmsg_init(struct lwmsg * lwmsg, uint8_t * buffer, uint8_t * macaddrss,int type, int seqnum );
|
|
|