25 lines
829 B
C
25 lines
829 B
C
#include "pkt_01_welcome.h"
|
|
|
|
pkt_desc pkt_01_welcome_desc[] = {
|
|
{ PKT_FIELD(CWP_ITEM_POSITIVE_INTEGER, pkt_01_welcome, chunk_size) },
|
|
{ PKT_FIELD(CWP_ITEM_POSITIVE_INTEGER, pkt_01_welcome, chunk_amount) },
|
|
{ PKT_ARRAY(pkt_01_welcome, numbers) },
|
|
{ PKT_ARRAY(pkt_01_welcome, structs) },
|
|
{ PKT_END },
|
|
};
|
|
|
|
size_t pkt_01_welcome_encode(pkt_01_welcome *table) {
|
|
cw_pack_context pc = {0};
|
|
pkt_pack_msg(&pc, 3);
|
|
pkt_pack_struct(&pc, pkt_01_welcome_desc, PKT_STRUCT_PTR(table));
|
|
return pkt_pack_msg_size(&pc);
|
|
}
|
|
|
|
int32_t pkt_01_welcome_handler(pkt_header *header) {
|
|
pkt_01_welcome table;
|
|
PKT_IF(pkt_msg_decode(header, pkt_01_welcome_desc, 3, PKT_STRUCT_PTR(&table)));
|
|
|
|
zpl_printf("we received: chunk_size: %d and chunk_amount: %d\n", table.chunk_size, table.chunk_amount);
|
|
return 0;
|
|
}
|