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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
* http://chibios-gfx.com/license.html
*/
/**
* @file src/tdisp/tdisp.c
* @brief TDISP Driver code.
*
* @addtogroup TDISP
* @{
*/
#include "gfx.h"
#if GFX_USE_TDISP || defined(__DOXYGEN__)
#include "tdisp/lld/tdisp_lld.h"
/* cursor controllers */
#define TDISP_CURSOR 1
#define TDISP_CURSOR_ON 0
#define TDISP_CURSOR_OFF
#if TDISP_NEED_MULTITHREAD
static gfxMutex tdispMutex;
#define MUTEX_INIT() gfxMutexInit(&tdispMutex)
#define MUTEX_ENTER() gfxMutexEnter(&tdispMutex)
#define MUTEX_LEAVE() gfxMutexExit(&tdispMutex)
#else
#define MUTEX_INIT()
#define MUTEX_ENTER()
#define MUTEX_LEAVE()
#endif
bool_t tdispInit(void) {
bool_t res;
MUTEX_INIT();
MUTEX_ENTER();
res = tdisp_lld_init();
MUTEX_LEAVE();
return res;
}
void tdispClear(void) {
MUTEX_ENTER();
tdisp_lld_clear();
MUTEX_LEAVE();
}
void tdispHome(void) {
MUTEX_ENTER();
tdisp_lld_set_cursor(0, 0);
MUTEX_LEAVE();
}
void tdispSetCursor(coord_t col, coord_t row) {
/* Keep the input range valid */
if (row >= TDISP.rows)
row = TDISP.rows - 1;
MUTEX_ENTER();
tdisp_lld_set_cursor(col, row);
MUTEX_LEAVE();
}
void tdispCreateChar(uint8_t address, uint8_t *charmap) {
/* make sure we don't write somewhere we're not supposed to */
if (address < TDISP.maxCustomChars) {
MUTEX_ENTER();
tdisp_lld_create_char(address, charmap);
MUTEX_LEAVE();
}
}
void tdispDrawChar(char c) {
MUTEX_ENTER();
tdisp_lld_draw_char(c);
MUTEX_LEAVE();
}
void tdispDrawString(char *s) {
MUTEX_ENTER();
while(*s)
tdisp_lld_draw_char(*s++);
MUTEX_LEAVE();
}
void tdispControl(uint16_t what, uint16_t value) {
MUTEX_ENTER();
tdisp_lld_control(what, value);
MUTEX_LEAVE();
}
void tdispScroll(uint16_t direction, uint16_t amount, uint16_t delay) {
MUTEX_ENTER();
tdisp_lld_scroll(direction, amount, delay);
MUTEX_LEAVE();
}
#if TDISP_USE_BACKLIGHT
void tdispSetBacklight(uint16_t percentage) {
if (percentage > 100)
percentage = 100;
MUTEX_ENTER();
tdisp_lld_set_backlight(percentage);
MUTEX_LEAVE();
}
#endif
#endif /* GFX_USE_TDISP */
/** @} */
|