aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/ED060SC4/gdisp_lld_board_template.h
blob: a45cc208fd6a6c8275f6db28ce18ac4a2d5e2709 (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
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
/*
 * 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://ugfx.org/license.html
 */

/* Board interface definitions for ED060SC4 PrimeView E-ink panel.
 * 
 * You should implement the following functions to define the interface to
 * the panel on your board.
 */

#ifndef _GDISP_LLD_BOARD_H
#define _GDISP_LLD_BOARD_H

/* Set up IO pins for the panel connection. */
static GFXINLINE void init_board(void) {
	#error Unimplemented
}

/* Delay for display waveforms. Should be an accurate microsecond delay. */
static void eink_delay(int us)
{
	#error Unimplemented
}

/* Turn the E-ink panel Vdd supply (+3.3V) on or off. */
static GFXINLINE void setpower_vdd(bool_t on) {
	#error Unimplemented
}

/* Turn the E-ink panel negative supplies (-15V, -20V) on or off. */
static GFXINLINE void setpower_vneg(bool_t on) {
	#error Unimplemented
}

/* Turn the E-ink panel positive supplies (-15V, -20V) on or off. */
static GFXINLINE void setpower_vpos(bool_t on) {
	#error Unimplemented
}

/* Set the state of the LE (source driver Latch Enable) pin. */
static GFXINLINE void setpin_le(bool_t on) {
	#error Unimplemented
}

/* Set the state of the OE (source driver Output Enable) pin. */
static GFXINLINE void setpin_oe(bool_t on) {
	#error Unimplemented
}

/* Set the state of the CL (source driver Clock) pin. */
static GFXINLINE void setpin_cl(bool_t on) {
	#error Unimplemented
}

/* Set the state of the SPH (source driver Start Pulse Horizontal) pin. */
static GFXINLINE void setpin_sph(bool_t on) {
	#error Unimplemented
}

/* Set the state of the D0-D7 (source driver Data) pins. */
static GFXINLINE void setpins_data(uint8_t value) {
	#error Unimplemented
}

/* Set the state of the CKV (gate driver Clock Vertical) pin. */
static GFXINLINE void setpin_ckv(bool_t on) {
	#error Unimplemented
}

/* Set the state of the GMODE (gate driver Gate Mode) pin. */
static GFXINLINE void setpin_gmode(bool_t on) {
	#error Unimplemented
}

/* Set the state of the SPV (gate driver Start Pulse Vertical) pin. */
static GFXINLINE void setpin_spv(bool_t on) {
	#error Unimplemented
}

#endif