1 /*
2  * Copyright (c) 2022 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef __COMMON_H__
8 #define __COMMON_H__
9 
10 #define PACKET_SIZE_START	(40)
11 #define DATA_SIZE		(100)
12 #define SENDING_TIME_MS		(1000)
13 
14 struct data_packet {
15 	unsigned long cnt;
16 	unsigned long size;
17 	unsigned char data[DATA_SIZE];
18 };
19 
20 #endif /* __COMMON_H__ */
21