aboutsummaryrefslogtreecommitdiff
path: root/host/net.h
blob: d8ec949d5506c29b07b09482a619bce674474a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __NET_H__
#define __NET_H__

#include "config.h"

typedef struct {
	uint8_t r, g, b;
} rgb_t;

typedef struct {
	uint32_t magic, seq;
	uint16_t width, height;
	rgb_t data[DISPLAY_WIDTH*DISPLAY_HEIGHT];
} ml_packet_t;

#define UDP_BUF_SIZE	sizeof(ml_packet_t)

#endif//__NET_H__