blob: 6b52fb24fbf78c4124940339b7073df50165e689 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef WORKER_H
#define WORKER_H
#define GLCD_WORKER_SIZE 2048
enum glcd_action { GLCD_SET_CURSOR,
GLCD_DRAW_PIXEL,
};
enum glcd_result { GLCD_DONE,
GLCD_FAILED,
GLCD_PROGRESS
};
#define _glcd_msg_base \
enum glcd_action action; \
enum glcd_result result;
struct glcd_msg_base {
_glcd_msg_base
};
struct glcd_msg_set_cursor {
_glcd_msg_base
uint16_t x;
uint16_t y;
};
struct glcd_msg_draw_pixel {
_glcd_msg_base
uint16_t x;
uint16_t y;
uint16_t color;
};
#endif
|