aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ginput/touch/FT5x06/gmouse_lld_FT5x06.c
blob: ed2e68face7ee3fa20c628d610977aa953d6e54d (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
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
120
/*
 * 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
 */

#include "gfx.h"

#if GFX_USE_GINPUT && GINPUT_NEED_MOUSE

#define GMOUSE_DRIVER_VMT		GMOUSEVMT_FT5x06
#include "src/ginput/driver_mouse.h"

// Get the hardware interface
#include "gmouse_lld_FT5x06_board.h"

// Hardware definitions
#include "drivers/ginput/touch/FT5x06/ft5x06.h"

static bool_t MouseInit(GMouse* m, unsigned driverinstance) {
	if (!init_board(m, driverinstance))
		return FALSE;

	aquire_bus(m);

	// Init default values. (From NHD-3.5-320240MF-ATXL-CTP-1 datasheet)
	// Valid touching detect threshold
	write_reg(m, FT5x06_ID_G_THGROUP, 0x16);

	// valid touching peak detect threshold
	write_reg(m, FT5x06_ID_G_THPEAK, 0x3C);

	// Touch focus threshold
	write_reg(m, FT5x06_ID_G_THCAL, 0xE9);

	// threshold when there is surface water
	write_reg(m, FT5x06_ID_G_THWATER, 0x01);

	// threshold of temperature compensation
	write_reg(m, FT5x06_ID_G_THTEMP, 0x01);

	// Touch difference threshold
	write_reg(m, FT5x06_ID_G_THDIFF, 0xA0);

	// Delay to enter 'Monitor' status (s)
	write_reg(m, FT5x06_ID_G_TIME_ENTER_MONITOR, 0x0A);

	// Period of 'Active' status (ms)
	write_reg(m, FT5x06_ID_G_PERIODACTIVE, 0x06);

	// Timer to enter 'idle' when in 'Monitor' (ms)
	write_reg(m, FT5x06_ID_G_PERIODMONITOR, 0x28);

	release_bus(m);
	return TRUE;
}

static void MouseXYZ(GMouse* m, GMouseReading* pdr)
{
	// Assume not touched.
	pdr->buttons = 0;
	pdr->z = 0;
	
	aquire_bus(m);

	// Only take a reading if we are touched.
	if ((read_byte(m, FT5x06_TOUCH_POINTS) & 0x07)) {

		/* Get the X, Y, Z values */
		pdr->x = (coord_t)(read_word(m, FT5x06_TOUCH1_XH) & 0x0fff);
		pdr->y = (coord_t)read_word(m, FT5x06_TOUCH1_YH);
		pdr->z = 1;

		#if GMOUSE_FT5x06_SELF_CALIBRATE
			// Rescale X,Y,Z - If we are using self-calibration
			pdr->x = gdispGGetWidth(m->display) - pdr->x / (4096/gdispGGetWidth(m->display));
			pdr->y = pdr->y / (4096/gdispGGetHeight(m->display));
		#endif
	}

	release_bus(m);
}

const GMouseVMT const GMOUSE_DRIVER_VMT[1] = {{
	{
		GDRIVER_TYPE_TOUCH,
		#if GMOUSE_FT5x06_SELF_CALIBRATE
			GMOUSE_VFLG_TOUCH | GMOUSE_VFLG_ONLY_DOWN | GMOUSE_VFLG_POORUPDOWN,
		#else
			GMOUSE_VFLG_TOUCH | GMOUSE_VFLG_ONLY_DOWN | GMOUSE_VFLG_POORUPDOWN | GMOUSE_VFLG_CALIBRATE | GMOUSE_VFLG_CAL_TEST,
		#endif
		sizeof(GMouse) + GMOUSE_FT5x06_BOARD_DATA_SIZE,
		_gmouseInitDriver,
		_gmousePostInitDriver,
		_gmouseDeInitDriver
	},
	1,				// z_max - (currently?) not supported
	0,				// z_min - (currently?) not supported
	1,				// z_touchon
	0,				// z_touchoff
	{				// pen_jitter
		GMOUSE_FT5x06_PEN_CALIBRATE_ERROR,			// calibrate
		GMOUSE_FT5x06_PEN_CLICK_ERROR,				// click
		GMOUSE_FT5x06_PEN_MOVE_ERROR				// move
	},
	{				// finger_jitter
		GMOUSE_FT5x06_FINGER_CALIBRATE_ERROR,		// calibrate
		GMOUSE_FT5x06_FINGER_CLICK_ERROR,			// click
		GMOUSE_FT5x06_FINGER_MOVE_ERROR			// move
	},
	MouseInit, 		// init
	0,				// deinit
	read_xyz,		// get
	0,				// calsave
	0				// calload
}};

#endif /* GFX_USE_GINPUT && GINPUT_NEED_MOUSE */