1 /* receiver.h */
2 
3 /*
4  * Copyright (c) 1997-2010, 2014 Wind River Systems, Inc.
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 #ifndef _RECEIVER_H
10 #define _RECEIVER_H
11 
12 #include <zephyr/kernel.h>
13 #include "config.h"
14 #include "memcfg.h"
15 #include "master.h"
16 
17 /* type defines. */
18 struct getinfo{
19 	int count;
20 	unsigned int time;
21 	int size;
22 };
23 
24 /* global data */
25 extern char data_recv[MESSAGE_SIZE];
26 
27 #endif /* _RECEIVER_H */
28